Browse Source

windows: add workflows for amd64 target architecture

win64
nillerusr 2 years ago
parent
commit
8404418202
  1. 22
      .github/workflows/build.yml
  2. 14
      .github/workflows/tests.yml

22
.github/workflows/build.yml

@ -47,6 +47,17 @@ jobs: @@ -47,6 +47,17 @@ jobs:
./waf.bat configure -T debug
./waf.bat build
build-windows-amd64:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Build windows-i386
run: |
git submodule init && git submodule update
./waf.bat configure -T debug -8
./waf.bat build
build-dedicated-windows-i386:
runs-on: windows-2019
@ -58,6 +69,17 @@ jobs: @@ -58,6 +69,17 @@ jobs:
./waf.bat configure -T debug -d
./waf.bat build
build-dedicated-windows-amd64:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Build dedicated windows-amd64
run: |
git submodule init && git submodule update
./waf.bat configure -T debug -d -8
./waf.bat build
build-dedicated-linux-i386:
runs-on: ubuntu-18.04

14
.github/workflows/tests.yml

@ -40,3 +40,17 @@ jobs: @@ -40,3 +40,17 @@ jobs:
cd out
$env:Path = "bin";
./unittest.exe
tests-windows-amd64:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Run tests windows-amd64
run: |
git submodule init && git submodule update
./waf.bat configure -T release --tests --prefix=out/ -8
./waf.bat install
cd out
$env:Path = "bin";
./unittest.exe

Loading…
Cancel
Save