Skip to content

Commit e125807

Browse files
committed
🔨 Fix ubuntu build missing headers
1 parent b79ba91 commit e125807

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/cmake-multi-platform.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
cpp_compiler: cl
1919
separator: '\\'
2020
- os: ubuntu-latest
21-
cpp_compiler: clang++
21+
cpp_compiler: g++
2222
separator: "/"
2323

2424
steps:
@@ -33,7 +33,7 @@ jobs:
3333
if: runner.os == 'Linux'
3434
run: |
3535
sudo apt-get update
36-
sudo apt-get install -y libegl1-mesa-dev libgl1-mesa-dev ninja-build clang
36+
sudo apt-get install -y libegl1-mesa-dev libgl1-mesa-dev ninja-build
3737
3838
- name: Setup Developer Command Prompt (Windows)
3939
if: runner.os == 'Windows'
@@ -88,12 +88,6 @@ jobs:
8888
echo "preset=conan-release" >> "$GITHUB_OUTPUT"
8989
fi
9090
91-
- name: Set Clang Environment (Ubuntu)
92-
if: runner.os == 'Linux'
93-
run: |
94-
echo "CC=clang" >> $GITHUB_ENV
95-
echo "CXX=clang++" >> $GITHUB_ENV
96-
9791
- name: Configure CMake
9892
shell: bash
9993
run: |

src/game/main.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#include <algorithm>
12
#include <filesystem>
23
#include <iostream>
34
#include <memory>

0 commit comments

Comments
 (0)