Skip to content

Commit db4262b

Browse files
committed
ci: update macos compilers
1 parent 73b37d1 commit db4262b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,15 @@ jobs:
126126
fail-fast: false
127127
matrix:
128128
compiler:
129-
- name: GCC 10
129+
- name: GCC 11
130130
slug: gcc
131-
c: gcc-10
132-
cxx: g++-10
131+
c: gcc-11
132+
cxx: g++-11
133133
smce_artifact: GNU
134-
- name: Clang/LLVM 11
134+
- name: Clang/LLVM 13
135135
slug: clang
136-
c: clang-11
137-
cxx: clang++-11
136+
c: clang-13
137+
cxx: clang++-13
138138
smce_artifact: AppleClang
139139
- name: AppleClang 12
140140
slug: appleclang
@@ -175,8 +175,8 @@ jobs:
175175
mv templates/osx* ~/Library/Application\ Support/Godot/templates/${{ steps.deps.outputs.GODOT_VERSION }}
176176
- name: CMake Configure
177177
run: |
178-
[ "$CC" = "clang-11" ] && export CC="$(brew --prefix llvm)/bin/clang -stdlib=libc++ -nostdinc++ -I/usr/local/opt/llvm/include/c++/v1 -L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib"
179-
[ "$CXX" = "clang++-11" ] && export CXX="$(brew --prefix llvm)/bin/clang++ -stdlib=libc++ -nostdinc++ -I/usr/local/opt/llvm/include/c++/v1 -L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib"
178+
[ "$CC" = "clang-13" ] && export CC="$(brew --prefix llvm)/bin/clang -stdlib=libc++ -nostdinc++ -I/usr/local/opt/llvm/include/c++/v1 -L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib"
179+
[ "$CXX" = "clang++-13" ] && export CXX="$(brew --prefix llvm)/bin/clang++ -stdlib=libc++ -nostdinc++ -I/usr/local/opt/llvm/include/c++/v1 -L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib"
180180
mkdir build
181181
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DSMCEGD_BUNDLE_DEPS=True -DSMCE_CPACK_PROFILE=DragNDrop -DFORCE_STRIP_CODESIGNING=On -S . -B build/
182182
- name: CMake Build

0 commit comments

Comments
 (0)