Skip to content

Commit

Permalink
fix codeql pipeline to install aarch64-none-efl toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
miikaoskari committed Nov 24, 2024
1 parent 17e59c0 commit 50be687
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,16 @@ jobs:
uses: actions/checkout@v4
with:
submodules: true


- name: Fetch aarch64-none-elf toolchain
run: |
wget https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-x86_64-aarch64-none-elf.tar.xz
tar -xf arm-gnu-toolchain-13.3.rel1-x86_64-aarch64-none-elf.tar.xz
sudo mv arm-gnu-toolchain-13.3.rel1-x86_64-aarch64-none-elf /opt/
echo "/opt/arm-gnu-toolchain-13.3.rel1-x86_64-aarch64-none-elf/bin" >> "$GITHUB_PATH"
- name: Install tools
run: sudo apt install ninja-build llvm lld python3
run: sudo apt-get update && sudo apt-get install -y python3 ninja-build

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down

0 comments on commit 50be687

Please sign in to comment.