Skip to content

Commit

Permalink
build with gcc13 instead of gcc10
Browse files Browse the repository at this point in the history
It should provide better source checking,
  • Loading branch information
robUx4 committed Dec 18, 2023
1 parent 1878e78 commit 4718e6b
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Linux gcc10 Build"
name: "Linux gcc13 Build"
on:
push:
branches: [ v1.x ]
Expand All @@ -7,19 +7,19 @@ on:

jobs:
build_libebml:
name: libebml for Linux gcc10
name: libebml for Linux gcc13
runs-on: ubuntu-latest
steps:
- uses: lukka/get-cmake@latest

- name: Get pushed code
uses: actions/checkout@v3

- name: Configure CMake
run: cmake -S . -B _build -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built
env:
CC: gcc-10
CXX: g++-10
CC: gcc-13
CXX: g++-13

- name: Build with CMake
run: cmake --build _build --parallel
Expand Down

0 comments on commit 4718e6b

Please sign in to comment.