fix paths #7
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: CMake Linux Build | |
on: [push] | |
jobs: | |
linux-build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: "recursive" | |
- name: Install Dependencies | |
run: | | |
sudo bash ./scripts/debian/1-install-deps.sh | |
cmake -E make_directory ${{github.workspace}}/build-linux | |
- name: Create Build Environment | |
working-directory: ${{github.workspace}}/build-linux | |
run: bash ${{github.workspace}}/scripts/debian/2-configure.sh | |
- name: Build Server | |
working-directory: ${{github.workspace}}/build-linux | |
run: bash ${{github.workspace}}/scripts/debian/3-build.sh | |
- name: Build Tests | |
working-directory: ${{github.workspace}}/build-linux | |
run: bash ${{github.workspace}}/scripts/debian/3-build-tests.sh | |
- name: Archive server artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: BeamMP-Server-linux | |
path: ${{github.workspace}}/build-linux/BeamMP-Server | |
- name: Archive test artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: BeamMP-Server-linux-tests | |
path: ${{github.workspace}}/build-linux/BeamMP-Server-tests | |
run-tests: | |
needs: linux-build | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/download-artifact@master | |
with: | |
name: BeamMP-Server-linux-tests | |
path: ${{github.workspace}} | |
- name: Install Runtime Dependencies | |
run: sudo bash ./scripts/debian/4-install-runtime-deps.sh | |
- name: Test | |
working-directory: ${{github.workspace}} | |
shell: bash | |
run: | | |
chmod +x ./BeamMP-Server-tests | |
./BeamMP-Server-tests |