Skip to content

Commit

Permalink
Trying to add Clang to build CI
Browse files Browse the repository at this point in the history
  • Loading branch information
indigodarkwolf committed Jul 19, 2024
1 parent af7defb commit 81e9f42
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,26 @@ jobs:
with:
name: box16-nr42.xx-linux
path: build/box16/
build-ubuntu-clang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
sudo apt-get update && sudo apt-get install -y make build-essential libgtk-3-dev libsdl2-dev
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: "10.0"
- name: Build Box16 (Ubuntu-Clang)
run: |
cd build
make
- name: Archive Ubuntu-Clang build
uses: actions/upload-artifact@v3
with:
name: box16-nr42.xx-linux-clang
path: build/box16/
build-ubuntu-trace:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 81e9f42

Please sign in to comment.