We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c95fff commit 2f5c783Copy full SHA for 2f5c783
.github/workflows/GenerateRelease.yaml
@@ -62,6 +62,7 @@ jobs:
62
run: |
63
if [ "$RUNNER_OS" == "Linux" ]; then
64
sudo apt-get install -y gcc-12 cmake ninja-build
65
+ gcc -v
66
elif [ "$RUNNER_OS" == "macOS" ]; then
67
brew install gcc@10 cmake ninja
68
elif [ "$RUNNER_OS" == "Windows" ]; then
@@ -82,8 +83,8 @@ jobs:
82
83
if: ${{ runner.os != 'Windows' }}
84
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -G Ninja
85
env:
- CC: gcc-10
86
- CXX: g++-10
+ CC: gcc-12
87
+ CXX: g++-12
88
89
# Build Binary
90
- name: Build
0 commit comments