Update server info on player class changed #173
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: Build with scripts | |
on: | |
push: | |
paths-ignore: | |
- "data/maps/**" | |
jobs: | |
build: | |
name: ${{ matrix.config.name }} | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- { | |
name: "Ubuntu 22.04 GCC", | |
os: ubuntu-22.04, | |
cc: "gcc", cxx: "g++" | |
} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
path: "scripts" | |
repository: "InfectionDust/infclass-scripts" | |
- uses: actions/checkout@v3 | |
with: | |
path: "scripts/ci/sources" | |
- name: Install the dependencies | |
run: ./scripts/scripts/prepare-system.sh | |
- name: Add the CI build configuration | |
run: | | |
cp scripts/ci/sources/.github/workflows/ci.conf scripts/conf | |
- name: Build the server | |
run: ./scripts/scripts/build.sh ci |