Skip to content

Commit 2f5c783

Browse files
authored
Update GenerateRelease.yaml
1 parent 1c95fff commit 2f5c783

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: .github/workflows/GenerateRelease.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ jobs:
6262
run: |
6363
if [ "$RUNNER_OS" == "Linux" ]; then
6464
sudo apt-get install -y gcc-12 cmake ninja-build
65+
gcc -v
6566
elif [ "$RUNNER_OS" == "macOS" ]; then
6667
brew install gcc@10 cmake ninja
6768
elif [ "$RUNNER_OS" == "Windows" ]; then
@@ -82,8 +83,8 @@ jobs:
8283
if: ${{ runner.os != 'Windows' }}
8384
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -G Ninja
8485
env:
85-
CC: gcc-10
86-
CXX: g++-10
86+
CC: gcc-12
87+
CXX: g++-12
8788

8889
# Build Binary
8990
- name: Build

0 commit comments

Comments
 (0)