update #32
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: Compile server | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
sudo apt update | |
sudo apt install git libfreetype6-dev libsdl2-dev libpnglite-dev libwavpack-dev python3 build-essential cmake libicu-dev -y | |
cd /home/runner/work/teeworlds-xPanic/teeworlds-xPanic/ | |
git clone https://github.com/teeworlds/Bam | |
cd Bam | |
git checkout v0.4.0 | |
./make_unix.sh | |
mv bam ../ | |
cd .. | |
./bam server_release |