CI script fixes

This commit is contained in:
Blaise Tine 2024-07-20 21:55:36 -07:00
parent 80b79d4d31
commit 0cb75c67c0

View file

@ -100,7 +100,6 @@ jobs:
../configure --tooldir=$TOOLDIR --xlen=${{ matrix.xlen }}
source ci/toolchain_env.sh
make build -s > /dev/null
find . -type f -executable -exec chmod +x {} + # Ensure all executables have correct permissions
- name: Upload Build Artifact
uses: actions/upload-artifact@v2
@ -148,12 +147,13 @@ jobs:
run: |
cd build${{ matrix.xlen }}
source ci/toolchain_env.sh
find . -type f -executable -exec chmod +x {} + # Ensure all executables have correct permissions
if [ "${{ matrix.name }}" == "regression" ]; then
bash ./ci/regression.sh --unittest
bash ./ci/regression.sh --isa
bash ./ci/regression.sh --kernel
bash ./ci/regression.sh --synthesis
bash ./ci/regression.sh --regression
./ci/regression.sh --unittest
./ci/regression.sh --isa
./ci/regression.sh --kernel
./ci/regression.sh --synthesis
./ci/regression.sh --regression
else
bash ./ci/regression.sh --${{ matrix.name }}
./ci/regression.sh --${{ matrix.name }}
fi