Skip to content

<Make> Add build cache to speed up builds #675

<Make> Add build cache to speed up builds

<Make> Add build cache to speed up builds #675

Workflow file for this run

name: GitHub CI
on:
push:
branches: [ stable, development, helios_stage]
pull_request:
branches: [ stable, development, helios_stage]
jobs:
build:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
statuses: write
strategy:
fail-fast: true
matrix:
language: ["cpp"]
steps:
- uses: actions/checkout@v4
- name: Configure Git
env:
TOKEN: ${{ secrets.AKASH_VF }}
run: git config --global url."https://${TOKEN}:[email protected]/".insteadOf "https://github.com/"
- name: Fetch Dependencies
run: |
sudo apt install cppcheck ccache -y
make get_avr_tc
make get_riscv_tc
- name: Init CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
debug: true
- name: Build
run: |
make demo_avr
make demo_avr_cpp
make demo_riscv
make demo_helios_avr
make demo_helios_riscv
make demo_qemu_sifive_e
make demo_ibex_ss
- name: Build Cache Stats

Check failure on line 54 in .github/workflows/github_ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/github_ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 54
run: |
make show_ccache_stats
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
- name: Clean Up
run: |
make clean_workspace