[1.x] build with gcc13 instead of gcc10 #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Linux gcc13 Build" | |
on: | |
push: | |
branches: [ v1.x ] | |
pull_request: | |
# branches: [ master ] | |
jobs: | |
build_libebml: | |
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-13 | |
CXX: g++-13 | |
- name: Build with CMake | |
run: cmake --build _build --parallel | |
- name: Test installation | |
run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built |