🎉 Added scripts

This commit is contained in:
Edgar 2020-10-19 10:41:37 +00:00 committed by GitHub
parent c1894f5744
commit f5c789da9d
6 changed files with 28 additions and 1 deletions

View File

@ -1 +1,3 @@
# ci-scripts # ci-scripts
Some bashscripts for installing devtools on Ubuntu

6
install-cmake.sh Normal file
View 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
View 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
View 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
View 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

Binary file not shown.