Merge pull request #300 from VisorFolks/bugfix/ishnajain/299-memcpyfix #653
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: 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 -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: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
- name: Clean Up | |
run: | | |
make clean | |
rm -rf toolchain |