🎉 Added scripts
This commit is contained in:
parent
c1894f5744
commit
f5c789da9d
@ -1 +1,3 @@
|
|||||||
# ci-scripts
|
# ci-scripts
|
||||||
|
|
||||||
|
Some bashscripts for installing devtools on Ubuntu
|
6
install-cmake.sh
Normal file
6
install-cmake.sh
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
cd /tmp/
|
||||||
|
lastversion Kitware/CMake --assets --filter sh -d
|
||||||
|
sh $(find . -name "cmake-*-Linux-x86_64.sh") --exclude-subdir --prefix=/usr/local
|
6
install-conan.sh
Normal file
6
install-conan.sh
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
cd /tmp/
|
||||||
|
lastversion conan-io/conan --assets --filter deb -d
|
||||||
|
dpkg -i $(find . -name "conan-ubuntu-64*.deb")
|
5
install-lastversion.sh
Normal file
5
install-lastversion.sh
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
wget "https://github.com/AnotherFoxGuy/ci-scripts/raw/main/lastversion" -O "/tmp/lastversion"
|
||||||
|
install -m 755 "/tmp/lastversion" "/usr/local/bin/"
|
8
install-sccache.sh
Normal file
8
install-sccache.sh
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
cd /tmp/
|
||||||
|
mkdir -p /tmp/sccache
|
||||||
|
lastversion mozilla/sccache --assets --filter linux -d
|
||||||
|
tar xvzf $(find . -name "sccache-*.tar.gz") --strip 1 -C /tmp/sccache
|
||||||
|
install -m 755 /tmp/sccache/sccache /usr/local/bin/
|
BIN
lastversion
Normal file
BIN
lastversion
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user