wait for game_start pkt to be ack'ed before starting the game #4
This file contains hidden or 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: kageserver build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: kageserver | |
| runs-on: ubuntu-latest | |
| container: debian:11 | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| apt-get update | |
| apt-get -y install build-essential git libcurl4-gnutls-dev libasio-dev | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| submodules: true | |
| - name: Build | |
| run: make | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| path: kageserver |