2022-08-17 08:12:27 +00:00
|
|
|
name: Build
|
2022-07-25 21:15:02 +00:00
|
|
|
|
2022-12-16 16:47:53 +00:00
|
|
|
on: [push, pull_request]
|
2022-07-25 21:15:02 +00:00
|
|
|
|
|
|
|
jobs:
|
2022-07-31 21:44:54 +00:00
|
|
|
build-linux-i386:
|
2023-04-08 10:40:33 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-25 21:15:02 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build linux-i386
|
|
|
|
run: |
|
|
|
|
scripts/build-ubuntu-i386.sh
|
|
|
|
|
2022-07-31 21:44:54 +00:00
|
|
|
build-linux-amd64:
|
2023-04-05 22:27:17 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2022-07-25 21:15:02 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build linux-amd64
|
|
|
|
run: |
|
|
|
|
scripts/build-ubuntu-amd64.sh
|
|
|
|
|
|
|
|
build-android-armv7a:
|
2023-04-05 22:27:17 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2022-07-25 21:15:02 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build android-armv7a
|
|
|
|
run: |
|
|
|
|
scripts/build-android-armv7a.sh
|
2022-07-28 17:24:05 +00:00
|
|
|
|
|
|
|
build-windows-i386:
|
2022-07-31 14:30:39 +00:00
|
|
|
runs-on: windows-2019
|
2022-07-28 17:24:05 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build windows-i386
|
|
|
|
run: |
|
2022-07-28 17:28:41 +00:00
|
|
|
git submodule init && git submodule update
|
2022-07-28 17:24:05 +00:00
|
|
|
./waf.bat configure -T debug
|
|
|
|
./waf.bat build
|
2022-07-31 21:38:10 +00:00
|
|
|
|
2022-12-16 16:23:23 +00:00
|
|
|
build-windows-amd64:
|
|
|
|
runs-on: windows-2019
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-12-17 07:14:49 +00:00
|
|
|
- name: Build windows-amd64
|
2022-12-16 16:23:23 +00:00
|
|
|
run: |
|
|
|
|
git submodule init && git submodule update
|
|
|
|
./waf.bat configure -T debug -8
|
|
|
|
./waf.bat build
|
|
|
|
|
2022-07-31 21:38:10 +00:00
|
|
|
build-dedicated-windows-i386:
|
|
|
|
runs-on: windows-2019
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build dedicated windows-i386
|
|
|
|
run: |
|
|
|
|
git submodule init && git submodule update
|
|
|
|
./waf.bat configure -T debug -d
|
|
|
|
./waf.bat build
|
|
|
|
|
2022-12-16 16:23:23 +00:00
|
|
|
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
|
|
|
|
|
2022-07-31 21:44:54 +00:00
|
|
|
build-dedicated-linux-i386:
|
2023-04-05 22:27:17 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2022-07-31 21:38:10 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build dedicated linux-i386
|
|
|
|
run: |
|
|
|
|
scripts/build-ubuntu-i386.sh -d
|
|
|
|
|
2022-07-31 21:44:54 +00:00
|
|
|
build-dedicated-linux-amd64:
|
2023-04-05 22:27:17 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2022-07-31 21:38:10 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build dedicated linux-amd64
|
|
|
|
run: |
|
|
|
|
scripts/build-ubuntu-amd64.sh -d
|