Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Goubermouche/sigma
Browse files Browse the repository at this point in the history
  • Loading branch information
Goubermouche committed Dec 17, 2023
2 parents e6b8156 + b7868c0 commit 27eeb02
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,18 @@ jobs:
tar -xzvf premake-5.0.0-alpha16-linux.tar.gz
sudo mv premake5 /usr/local/bin/
- name: Print current dir
run: ls
- name: Install Clang
run: |
sudo apt update
sudo apt install -y clang
- name: Set CC and CXX environment variables
run: |
echo "CC=clang" >> $GITHUB_ENV
echo "CXX=clang++" >> $GITHUB_ENV
- name: Run Premake
run: premake5 gmake

- name: Compile Project
run: make config=debug
run: make config=debug CC=clang

0 comments on commit 27eeb02

Please sign in to comment.