CI: Update #43
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 | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Vcpkg | |
uses: lukka/run-vcpkg@v11 | |
with: | |
vcpkgGitCommitId: 4a600e9fea71bd7872080cbb716797e04d30e6d3 | |
- name: Dependencies | |
run: | | |
sudo apt-get install g++-multilib gcc-multilib | |
sudo dpkg --add-architecture i386 | |
sudo apt-get install nasm:i386 paxctl:i386 libtommath-dev:i386 | |
- name: CoD4x | |
run: | | |
cd ../ | |
curl -o CoD4x_Server-20.1.zip https://codeload.github.com/callofduty4x/CoD4x_Server/zip/refs/tags/20.1 | |
7z x CoD4x_Server-20.1.zip | |
cp -r CGSC CoD4x_Server-20.1/src/CGSC | |
- name: Build | |
working-directory: ../CoD4x_Server-20.1/src/CGSC | |
run: | | |
mkdir build && cd build | |
cmake .. -DCMAKE_TOOLCHAIN_FILE=".vcpkg/linux.cmake" -DBUILD_TESTING=True -DCOD4X=True | |
cmake --build . | |
- name: Artifact Copy | |
working-directory: ../CoD4x_Server-20.1/src/CGSC | |
run: | | |
cp -r build ../../../CGSC | |
- name: Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: build-artifact | |
path: build | |
tests: | |
runs-on: ubuntu-18.04 | |
needs: [build] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Artifact | |
uses: actions/download-artifact@v2 | |
with: | |
name: build-artifact | |
path: build | |
- name: Artifact Setup | |
run: | | |
mkdir -p ../CoD4x_Server-20.1/src/CGSC | |
cp -r build ../CoD4x_Server-20.1/src/CGSC | |
- name: Tests | |
working-directory: ../CoD4x_Server-20.1/src/CGSC/build | |
run: | | |
chmod +x bin/CGSC.Tests | |
ctest -C Release |