<GitHub Actions> Add tools build test #2
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: Cyancore Tools Build | |
on: | |
pull_request: | |
branches: [ stable, development ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
statuses: write | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure Git | |
env: | |
TOKEN: ${{ secrets.AKASH_VF }} | |
run: git config --global url."https://${TOKEN}:x-oauth-basic@github.com/".insteadOf "https://github.com/" | |
- name: Fetch Dependencies | |
run: | | |
make setup_workspace | |
- name: Init CodeQL | |
uses: github/codeql-action/init@v3 | |
- name: Tools Build | |
run: | | |
make get_qemu | |
make get_picotool | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
- name: Clean Up | |
run: | | |
make clean_workspace |