Update to C++23 standard #72
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 (gcc) | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Setup required packages" | |
run: sudo apt-get install -y binutils-dev libssl-dev uuid-dev flex bison | |
- name: "Setup gcc" | |
uses: egor-tensin/setup-gcc@v1 | |
- name: "Setup cmake" | |
run: cmake --version | |
- name: "Setup gil" | |
run: | | |
pip3 install gil | |
gil update | |
- name: "Build" | |
run: | | |
cd build | |
./unix.sh |