From 8404418202a099dd3db64435ae7d1ecf4c9249e8 Mon Sep 17 00:00:00 2001 From: nillerusr Date: Fri, 16 Dec 2022 19:23:23 +0300 Subject: [PATCH] windows: add workflows for amd64 target architecture --- .github/workflows/build.yml | 22 ++++++++++++++++++++++ .github/workflows/tests.yml | 14 ++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6977112b..d4e2a14c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: ./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 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a0742c16..3a99a7f2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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