🧪 Use xpack risc-v gcc as default prebuilt toolchain #2833
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Processor | |
on: | |
push: | |
paths: | |
- 'rtl/**' | |
- 'sw/**' | |
- 'sim/**' | |
- '.github/workflows/Processor.yml' | |
pull_request: | |
paths: | |
- 'rtl/**' | |
- 'sw/**' | |
- 'sim/**' | |
- '.github/workflows/Processor.yml' | |
workflow_dispatch: | |
jobs: | |
sim_default_tb: | |
runs-on: ubuntu-latest | |
name: 'processor simulation' | |
strategy: | |
fail-fast: false | |
matrix: | |
example: | |
- processor_check | |
- hello_world | |
steps: | |
- name: '🧰 Repository Checkout' | |
uses: actions/checkout@v4 | |
- name: '📦 Install xPack RISC-V GCC' | |
run: | | |
wget -q https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/releases/download/v14.2.0-2/xpack-riscv-none-elf-gcc-14.2.0-2-linux-x64.tar.gz | |
mkdir $GITHUB_WORKSPACE/riscv-gcc | |
tar -xzf xpack-riscv-none-elf-gcc-14.2.0-2-linux-x64.tar.gz -C $GITHUB_WORKSPACE/riscv-gcc | |
echo $GITHUB_WORKSPACE/riscv-gcc/xpack-riscv-none-elf-gcc-14.2.0-2/bin >> $GITHUB_PATH | |
- name: '📦 Install GHDL' | |
uses: ghdl/setup-ghdl-ci@nightly | |
- name: '🔍 Check tools' | |
run: | | |
riscv-none-elf-gcc -v | |
ghdl -v | |
- name: '⚙️ Build Software Framework Tests' | |
run: | | |
make RISCV_PREFIX=riscv-none-elf- -C sw/example/processor_check check | |
make RISCV_PREFIX=riscv-none-elf- -C sw/example clean_all exe | |
make RISCV_PREFIX=riscv-none-elf- -C sw/bootloader clean_all info bootloader | |
- name: '🚧 Compile executable and run simulation' | |
run: | | |
make -C sw/example/${{ matrix.example }} \ | |
RISCV_PREFIX=riscv-none-elf- \ | |
USER_FLAGS+="-DUART0_SIM_MODE -DUART1_SIM_MODE" \ | |
clean_all \ | |
info \ | |
all \ | |
sim-check |