Skip to content

Extend CI matrix

Extend CI matrix #15

Workflow file for this run

name: run-tests
on:
push:
pull_request:
env:
TOOL_VERSION: d70ea67d
jobs:
build-spike:
uses: ./.github/workflows/build-spike.yml
test-pyflow:
runs-on: ubuntu-latest
env:
TEST: riscv_arithmetic_basic_test
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get -qqy update && sudo apt-get -qqy install gcc-riscv64-linux-gnu git build-essential device-tree-compiler
- name: Setup python
# python dependencies cannot be properly downloaded with new versions of python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install python dependencies
run: python3 -m pip install -r requirements.txt
- name: Build spike
run: |
git clone https://github.com/riscv-software-src/riscv-isa-sim spike
mkdir -p spike/build
cd spike/build
git checkout $TOOL_VERSION
../configure --prefix=/opt/spike
make -j`nproc`
make install
cd -
- name: Set variables
run: |
echo "RISCV_GCC=riscv64-linux-gnu-gcc" >> $GITHUB_ENV
echo "RISCV_OBJCOPY=riscv64-linux-gnu-objcopy" >> $GITHUB_ENV
echo "SPIKE_PATH=/opt/spike/bin" >> $GITHUB_ENV
echo "PYTHONPATH=pygen" >> $GITHUB_ENV
- name: Generate Tests
run: |

Check failure on line 52 in .github/workflows/run-tests.yml

View workflow run for this annotation

GitHub Actions / run-tests

Invalid workflow file

The workflow is not valid. .github/workflows/run-tests.yml (Line: 52, Col: 14): Unrecognized named-value: 'TEST'. Located at position 1 within expression: TEST .github/workflows/run-tests.yml (Line: 63, Col: 14): Unrecognized named-value: 'TEST'. Located at position 1 within expression: TEST
set -eo pipefail
python3 run.py --simulator pyflow \
--test ${{ TEST }} --iss spike \
--start_seed 999 --iterations 1 --batch_size 1 \
--isa rv32imc --mabi ilp32 --steps gen -v -o test 2>&1 | tee test/generate.log
- name: Patch Tests
run: find test/asm_test -name "*.S" -exec python3 .github/scripts/code_fixup.py -i {} -o {} \;
- name: Run tests
run: |
set -eo pipefail
python3 run.py --simulator pyflow \
--test ${{ TEST }} --iss spike --iss_timeout 60 \
--start_seed 999 --iterations 1 --batch_size 1 \
--isa rv32imc --mabi ilp32 --steps gcc_compile,iss_sim -v -o test 2>&1 | tee -a test/generate.log
- name: Upload logs
uses: actions/upload-artifact@v3
if: always()
with:
path: |
test/asm_test/*.log
test/*.log
test-riscv:
runs-on: [self-hosted, Linux, X64, gcp-custom-runners]
needs: [build-spike]
container: centos:8
strategy:
fail-fast: false
matrix:
test:
- riscv_arithemtic_basic_test
- riscv_rand_instr_test
- riscv_jump_stress_test
- riscv_loop_test
- riscv_rand_jump_test
- riscv_mmu_stress_test
- riscv_no_fence_test
- riscv_illegal_instr_test
- riscv_ebreak_test
- riscv_ebreak_debug_mode_test
- riscv_full_interrupt_test
- riscv_unaligned_load_store_test
- riscv_non_compressed_instr_test
- riscv_hint_instr_test
- riscv_pmp_test
env:
GHA_EXTERNAL_DISK: additional-tools
steps:
- uses: actions/checkout@v3
- name: Prepare Environment
run: _secret_environment
- name: Setup Cache Metadata
id: cache_metadata
run: |
date=$(date +"%Y_%m_%d")
time=$(date +"%Y%m%d_%H%M%S_%N")
cache_spike_restore_key=cache_spike_
cache_spike_key=${cache_spike_restore_key}d70ea67d_${date}
echo "cache_spike_restore_key=$cache_spike_restore_key" | tee -a "$GITHUB_ENV"
echo "cache_spike_key=$cache_spike_key" | tee -a "$GITHUB_ENV"
- name: Restore Spike cache
id: cache-spike-restore
uses: actions/cache/restore@v3
with:
path: |
/opt/spike
/opt/spike/.cache
key: ${{ env.cache_spike_key }}
restore-keys: ${{ env.cache_spike_restore_key }}
- name: Generate Tests
run: _secret_riscv
env:
RISCV_TEST: ${{ matrix.test }}
- name: Run Tests
run: /opt/spike/bin/spike --help