Skip to content

Commit

Permalink
github actions: switch to llvm automated install script
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler569 committed May 9, 2024
1 parent 6475c9b commit 62a4175
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
fetch-depth: 0
- name: Install OS dependancies
run: |
sudo apt update
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository -y "deb https://apt.llvm.org/jammy/ llvm-toolchain-jammy main"
sudo apt-get update
sudo apt-get upgrade
sudo apt install git make cmake ninja-build ruby clang lld xorriso mtools qemu-system
sudo apt-get install git make cmake ninja-build ruby xorriso mtools qemu-system wget
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 18
- name: build
run: make
- name: Upload ISO
Expand Down

0 comments on commit 62a4175

Please sign in to comment.