source-engine/.github/workflows/tests.yml

60 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2022-08-17 16:22:05 +08:00
name: Tests
2022-12-17 00:47:53 +08:00
on: [push, pull_request]
2022-08-17 16:22:05 +08:00
jobs:
tests-linux-i386:
2023-04-06 06:27:17 +08:00
runs-on: ubuntu-20.04
2022-08-17 16:22:05 +08:00
steps:
- uses: actions/checkout@v2
- name: Run tests linux-i386
run: |
scripts/tests-ubuntu-i386.sh
tests-linux-amd64:
2023-04-06 06:27:17 +08:00
runs-on: ubuntu-20.04
2022-08-17 16:22:05 +08:00
steps:
- uses: actions/checkout@v2
- name: Run tests linux-amd64
run: |
scripts/tests-ubuntu-amd64.sh
tests-macos-amd64:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Run tests macos-amd64
run: |
scripts/tests-macos-amd64.sh
2022-08-17 16:22:05 +08:00
tests-windows-i386:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Run tests windows-i386
run: |
git submodule init && git submodule update
2023-11-09 02:58:33 +08:00
./waf.bat configure -T release --tests --prefix=out/ --32bits
2022-08-17 16:22:05 +08:00
./waf.bat install
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
2023-11-09 02:58:33 +08:00
./waf.bat configure -T release --tests --prefix=out/
./waf.bat install
cd out
$env:Path = "bin";
./unittest.exe