💥 Devendored all deps #3
Workflow file for this run
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: Linux with Sysdeps | |
on: [push, pull_request] | |
jobs: | |
linux: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install build Dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y libjsoncpp-dev fakeroot libarchive-tools python3-apt zstd gettext | |
curl "https://cdn.anotherfoxguy.com/makedeb/install-makedeb.sh" | sudo bash | |
- name: Install angelscript | |
run: git clone https://mpr.makedeb.org/angelscript.git && cd angelscript && makedeb -is | |
- name: Install socketw | |
run: git clone https://mpr.makedeb.org/socketw.git && cd socketw && makedeb -is | |
- uses: actions/checkout@v2 | |
- name: Configure | |
run: cmake -DCMAKE_BUILD_TYPE=Release . | |
- name: Build | |
run: make -j4 |