You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
767 B
27 lines
767 B
name: build |
|
|
|
on: [push, pull_request] |
|
|
|
jobs: |
|
build: |
|
runs-on: ${{ matrix.os }} |
|
strategy: |
|
matrix: |
|
os: [ubuntu-latest] |
|
compiler: [gcc, clang] |
|
include: |
|
- compiler: gcc |
|
cpp-compiler: g++ |
|
- compiler: clang |
|
cpp-compiler: clang++ |
|
env: |
|
CC: ${{ matrix.compiler }} |
|
CXX: ${{ matrix.cpp-compiler }} |
|
steps: |
|
- name: Checkout |
|
uses: actions/checkout@v2 |
|
- name: Install dependencies |
|
run: sudo apt-get -y install gcc-multilib g++-multilib libgl1-mesa-dev |
|
- name: Build client and server on ${{ matrix.os }} with ${{ matrix.compiler }} |
|
run: | |
|
cmake -B build -S . -DCMAKE_EXE_LINKER_FLAGS="-Wl,--no-undefined" && cmake --build build --target all
|
|
|