Compare commits

...

2 Commits

Author SHA1 Message Date
304fec5dfd
⬆️ Updated tools 2024-01-17 10:46:25 +01:00
4ffdb90e31
⬆️ Updated tools 2024-01-03 11:59:53 +01:00
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash
set -eu
wget "https://github.com/Kitware/CMake/releases/download/v3.28.0/cmake-3.28.0-Linux-x86_64.sh" -nv -O /tmp/cmake.sh
wget "https://github.com/Kitware/CMake/releases/download/v3.28.1/cmake-3.28.1-Linux-x86_64.sh" -nv -O /tmp/cmake.sh
sh /tmp/cmake.sh --exclude-subdir --prefix=/usr/local

View File

@ -1,5 +1,5 @@
#!/bin/bash
set -eu
wget "https://github.com/svenstaro/miniserve/releases/download/v0.24.0/miniserve-v0.24.0-x86_64-unknown-linux-musl" -nv -O /tmp/miniserve
wget "https://github.com/svenstaro/miniserve/releases/download/v0.26.0/miniserve-v0.26.0-x86_64-unknown-linux-musl" -nv -O /tmp/miniserve
install -m 755 /tmp/miniserve /usr/local/bin/

View File

@ -2,6 +2,6 @@
set -eu
mkdir -p /tmp/sccache
wget "https://github.com/mozilla/sccache/releases/download/v0.7.4/sccache-v0.7.4-x86_64-unknown-linux-musl.tar.gz" -nv -O /tmp/sccache.tar.gz
wget "https://github.com/mozilla/sccache/releases/download/v0.7.5/sccache-v0.7.5-x86_64-unknown-linux-musl.tar.gz" -nv -O /tmp/sccache.tar.gz
tar xvzf /tmp/sccache.tar.gz --strip 1 -C /tmp/sccache
install -m 755 /tmp/sccache/sccache /usr/local/bin/