Linux Compiling #38
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: MP_Windows | |
on: | |
push: | |
paths: | |
- '.github/**' | |
- 'mp/src/**' | |
pull_request: | |
paths: | |
- 'mp/src/**' | |
jobs: | |
build: | |
runs-on: | |
windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Configure dependencies | |
uses: ilammy/msvc-dev-cmd@v1 | |
- name: Create project | |
run: cd mp/src;devtools/bin/vpc.exe /sdk2013ce /2013 +game /mksln sdk2013ce.sln | |
- name: Build project | |
run: cd mp/src;devenv sdk2013ce.sln /Build Release | |
- name: Pack | |
shell: bash | |
run: tar cJfv Windows.tar.xz mp/game/mod_sdk2013ce/bin | |
- name: Upload product | |
uses: actions/upload-artifact@v2 | |
with: | |
name: mp_sdk2013ce | |
path: Windows.tar.xz |