We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07189ca commit ffc8609Copy full SHA for ffc8609
.github/workflows/build.yml
@@ -16,6 +16,12 @@ jobs:
16
os: [ubuntu-latest]
17
python-version: ["3.9", "3.10", "3.11"]
18
steps:
19
+ - name: Downgrade GCC to version 12
20
+ run: |
21
+ sudo apt-get install -y gcc-12 g++-12
22
+ sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 100
23
+ sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 100
24
+ gcc --version
25
- name: Checkout
26
uses: actions/checkout@v4
27
with:
0 commit comments