Skip to content

Commit

Permalink
Fix workflow syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
grunt-lucas committed Oct 22, 2024
1 parent 5523522 commit aa385ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux_amd64_gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
sudo apt-get install libpng-dev
sudo apt-get install cmake
sudo apt-get install g++
g++-14 --version
g++ --version
- name: Checkout porytiles
uses: actions/checkout@v3

- name: Build the project
run: |
export CXX=g++-14
export CXX=g++
cmake -B build
cd build
cmake --build .
Expand Down

0 comments on commit aa385ec

Please sign in to comment.