Skip to content

Commit

Permalink
Attempt to fix Linux compile
Browse files Browse the repository at this point in the history
  • Loading branch information
Llennpie committed Apr 3, 2024
1 parent a5a6e6a commit ad633bf
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
rm -rf textures text src sound lib levels include data bin assets actors res
rm -f level_rules.mk
cd ../../
- name: Upload Artifacts
- name: Upload Binaries
uses: actions/upload-artifact@v4
with:
name: saturn-${{ github.run_number }}-${{ github.job }}
Expand All @@ -39,16 +39,18 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Fetch Dependencies
run: sudo apt install -y build-essential git python3 libglew-dev libsdl2-dev curl libcurl4-gnutls-dev libjsoncpp-dev
run: |
sudo apt update
sudo apt install -y build-essential git python3 libglew-dev libsdl2-dev curl libcurl4-gnutls-dev libjsoncpp-dev
- name: Build
run: |
make
cd build/us_pc
rm -rf textures text src sound lib levels include data bin assets actors res
rm -f level_rules.mk
cd ../../
- name: Upload Artifacts
- name: Upload Binaries
uses: actions/upload-artifact@v4
with:
name: saturn-${{ github.run_number }}-${{ github.job }}
path: /home/runner/work/Saturn/Saturn/build/us_pc
path: /home/runner/work/Saturn/Saturn/build/us_pc

0 comments on commit ad633bf

Please sign in to comment.