minor update

This commit is contained in:
Blaise Tine 2024-04-17 01:05:04 -07:00
parent 8fa28bfca1
commit 57a5aead4c

View file

@ -22,12 +22,12 @@ cache:
- $HOME/build64
install:
- if [ ! -d "$TOOLDIR" ] || [ -z "$(ls -A $TOOLDIR)" ] || [ "$(cat "$TOOLDIR/version.txt")" != "v0.2" ]; then
- if [ ! -d "$TOOLDIR" ] || [ -z "$(ls -A $TOOLDIR)" ] || [ "$(cat "$TOOLDIR/version.txt")" != "v0" ]; then
rm -rf $TOOLDIR;
mkdir -p $TOOLDIR;
cd $HOME/build$XLEN;
./ci/toolchain_install.sh --all;
echo "v0.2" > "$TOOLDIR/version.txt";
echo "v0" > "$TOOLDIR/version.txt";
fi
- if [ ! -d "$HOME/third_party" ] || [ -z "$(ls -A $HOME/third_party)" ] || [ "$(cat "$HOME/third_party/version.txt")" != "v0" ]; then
cd $TRAVIS_BUILD_DIR;