mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-02-11 06:24:30 +00:00
28 lines
767 B
YAML
28 lines
767 B
YAML
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
|