Skip to content

<Libc> Add support for scanf to accept formatted #620

<Libc> Add support for scanf to accept formatted

<Libc> Add support for scanf to accept formatted #620

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}:x-oauth-basic@github.com/".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
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
- name: Clean Up
run: |
make clean
rm -rf toolchain