-
Notifications
You must be signed in to change notification settings - Fork 271
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve CI #258
base: master
Are you sure you want to change the base?
Improve CI #258
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,111 +1,119 @@ | ||||||
name: Build | ||||||
|
||||||
on: [push, pull_request] | ||||||
env: | ||||||
WAF_FLAGS: -T debug --disable-warns --prefix=build_hl2 | ||||||
|
||||||
jobs: | ||||||
build-linux-i386: | ||||||
runs-on: ubuntu-latest | ||||||
|
||||||
steps: | ||||||
- uses: actions/checkout@v2 | ||||||
- name: Build linux-i386 | ||||||
run: | | ||||||
scripts/build-ubuntu-i386.sh | ||||||
|
||||||
build-linux-amd64: | ||||||
runs-on: ubuntu-20.04 | ||||||
|
||||||
steps: | ||||||
- uses: actions/checkout@v2 | ||||||
- name: Build linux-amd64 | ||||||
run: | | ||||||
scripts/build-ubuntu-amd64.sh | ||||||
|
||||||
build-android-armv7a: | ||||||
runs-on: ubuntu-20.04 | ||||||
|
||||||
steps: | ||||||
- uses: actions/checkout@v2 | ||||||
- name: Build android-armv7a | ||||||
run: | | ||||||
scripts/build-android-armv7a.sh | ||||||
|
||||||
build-windows-i386: | ||||||
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 | ||||||
./waf.bat build | ||||||
|
||||||
build-windows-amd64: | ||||||
runs-on: windows-2019 | ||||||
|
||||||
steps: | ||||||
- uses: actions/checkout@v2 | ||||||
- name: Build windows-amd64 | ||||||
run: | | ||||||
git submodule init && git submodule update | ||||||
./waf.bat configure -T debug -8 | ||||||
./waf.bat build | ||||||
|
||||||
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 | ||||||
|
||||||
build-dedicated-windows-amd64: | ||||||
runs-on: windows-2019 | ||||||
|
||||||
build-linux: | ||||||
strategy: | ||||||
fail-fast: false | ||||||
matrix: | ||||||
os: [ubuntu-latest] | ||||||
bits: ['', '--64bits'] | ||||||
android: [''] | ||||||
flags: ['', '-d'] | ||||||
include: | ||||||
- os: ubuntu-20.04 | ||||||
bits: '' | ||||||
android: '--android=armeabi-v7a-hard,4.9,21 --togles' | ||||||
flags: '' | ||||||
runs-on: ${{ matrix.os }} | ||||||
env: | ||||||
DEPS: libopenal-dev libpng-dev libjpeg-dev libfreetype6-dev libfontconfig1-dev libcurl4-gnutls-dev libsdl2-dev zlib1g-dev libbz2-dev libedit-dev | ||||||
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-20.04 | ||||||
|
||||||
steps: | ||||||
- uses: actions/checkout@v2 | ||||||
- name: Build dedicated linux-i386 | ||||||
run: | | ||||||
scripts/build-ubuntu-i386.sh -d | ||||||
|
||||||
build-dedicated-linux-amd64: | ||||||
runs-on: ubuntu-20.04 | ||||||
|
||||||
steps: | ||||||
- uses: actions/checkout@v2 | ||||||
- name: Build dedicated linux-amd64 | ||||||
run: | | ||||||
scripts/build-ubuntu-amd64.sh -d | ||||||
|
||||||
build-macos-amd64: | ||||||
- uses: actions/checkout@v3 | ||||||
with: | ||||||
submodules: recursive | ||||||
|
||||||
- name: Install common dependencies | ||||||
run: sudo apt-get update && sudo apt-get install -y g++-multilib gcc-multilib | ||||||
- name: Install 32bit dependencies | ||||||
if: ${{ matrix.bits == '' && !matrix.android }} | ||||||
run: | | ||||||
sudo dpkg --add-architecture i386 | ||||||
sudo apt-get update | ||||||
sudo apt-get install -y aptitude | ||||||
sudo aptitude install -y $(echo $DEPS | sed -r 's/[a-z0-9_\-]+/&:i386/g') | ||||||
echo "PKG_CONFIG_PATH=/usr/lib/i386-linux-gnu/pkgconfig" >> $GITHUB_ENV | ||||||
- name: Install 64bit dependencies | ||||||
if: ${{ matrix.bits != '' }} | ||||||
run: | | ||||||
sudo apt-get install -y $DEPS | ||||||
- name: Install Android dependencies | ||||||
if: ${{ matrix.android != '' }} | ||||||
run: | | ||||||
wget https://dl.google.com/android/repository/android-ndk-r10e-linux-x86_64.zip -o /dev/null | ||||||
unzip android-ndk-r10e-linux-x86_64.zip | ||||||
export NDK_HOME=$PWD/android-ndk-r10e/ | ||||||
echo "NDK_HOME=$NDK_HOME" >> $GITHUB_ENV | ||||||
echo "ANDROID_NDK_HOME=$NDK_HOME" >> $GITHUB_ENV | ||||||
|
||||||
- name: Configure | ||||||
run: ./waf configure ${{ matrix.bits }} ${{ matrix.android }} ${{ matrix.flags }} $WAF_FLAGS | ||||||
- name: Build ${{ matrix.os }} | ||||||
run: ./waf install --strip-to-file | ||||||
- name: Upload build | ||||||
uses: actions/upload-artifact@v3 | ||||||
with: | ||||||
name: linux${{matrix.bits}}${{matrix.flags}}${{matrix.android}} | ||||||
path: | | ||||||
build_hl2 | ||||||
!build_hl2/**/*.debug | ||||||
- name: Upload debug symbols | ||||||
uses: actions/upload-artifact@v3 | ||||||
with: | ||||||
name: debug-Linux${{matrix.bits}}${{matrix.flags}}${{matrix.android}} | ||||||
path: | | ||||||
build_hl2/**/*.debug | ||||||
|
||||||
build-macos: | ||||||
strategy: | ||||||
fail-fast: false | ||||||
matrix: | ||||||
flags: ['', '-d'] | ||||||
runs-on: macos-latest | ||||||
|
||||||
steps: | ||||||
- uses: actions/checkout@v2 | ||||||
- name: Build macos-amd64 | ||||||
run: | | ||||||
scripts/build-macos-amd64.sh | ||||||
- uses: actions/checkout@v3 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
with: | ||||||
submodules: recursive | ||||||
|
||||||
- name: Install dependencies | ||||||
run: brew install sdl2 | ||||||
|
||||||
- name: Configure | ||||||
run: ./waf configure --64bits ${{ matrix.flags }} $WAF_FLAGS | ||||||
- name: Build macos-amd64 | ||||||
run: ./waf install --strip-to-file | ||||||
- name: Upload build | ||||||
uses: actions/upload-artifact@v3 | ||||||
with: | ||||||
name: macOS--64bits${{matrix.flags}}${{matrix.android}} | ||||||
path: | | ||||||
build_hl2 | ||||||
!build_hl2/**/*.dSYM | ||||||
- name: Upload debug symbols | ||||||
uses: actions/upload-artifact@v3 | ||||||
with: | ||||||
name: debug-macOS--64bits${{matrix.flags}}${{matrix.android}} | ||||||
path: | | ||||||
build_hl2/**/*.dSYM | ||||||
|
||||||
build-windows: | ||||||
strategy: | ||||||
fail-fast: false | ||||||
matrix: | ||||||
os: [windows-2019] | ||||||
bits: ['', '--64bits'] | ||||||
flags: ['', '-d'] | ||||||
runs-on: ${{ matrix.os }} | ||||||
steps: | ||||||
- uses: actions/checkout@v3 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
with: | ||||||
submodules: recursive | ||||||
|
||||||
build-dedicated-macos-amd64: | ||||||
runs-on: macos-latest | ||||||
- name: Configure | ||||||
run: ./waf configure ${{ matrix.bits }} ${{ matrix.flags }} ${{ env.WAF_FLAGS }} | ||||||
- name: Build ${{ matrix.os }} | ||||||
run: ./waf install | ||||||
|
||||||
steps: | ||||||
- uses: actions/checkout@v2 | ||||||
- name: Build dedicated macos-amd64 | ||||||
run: | | ||||||
scripts/build-macos-amd64.sh -d |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,59 +1,83 @@ | ||||||
name: Tests | ||||||
|
||||||
on: [push, pull_request] | ||||||
env: | ||||||
WAF_FLAGS: -T release --disable-warns --prefix=build_tests --tests --sanitize=address,undefined | ||||||
|
||||||
jobs: | ||||||
tests-linux-i386: | ||||||
runs-on: ubuntu-20.04 | ||||||
|
||||||
tests-linux: | ||||||
strategy: | ||||||
matrix: | ||||||
os: [ubuntu-latest, ubuntu-20.04] | ||||||
bits: ['', '--64bits'] | ||||||
android: [''] | ||||||
runs-on: ${{ matrix.os }} | ||||||
env: | ||||||
DEPS: libbz2-dev | ||||||
steps: | ||||||
- uses: actions/checkout@v2 | ||||||
- name: Run tests linux-i386 | ||||||
run: | | ||||||
scripts/tests-ubuntu-i386.sh | ||||||
- uses: actions/checkout@v3 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
with: | ||||||
submodules: recursive | ||||||
|
||||||
tests-linux-amd64: | ||||||
runs-on: ubuntu-20.04 | ||||||
- name: Install common dependencies | ||||||
run: sudo apt-get update && sudo apt-get install -y g++-multilib gcc-multilib | ||||||
- name: Install 32bit dependencies | ||||||
if: ${{ matrix.bits == '' && !matrix.android }} | ||||||
run: | | ||||||
sudo dpkg --add-architecture i386 | ||||||
sudo apt-get update | ||||||
sudo apt-get install aptitude | ||||||
sudo aptitude install -y $(echo $DEPS | sed -r 's/[a-z0-9_\-]+/&:i386/g') | ||||||
echo "PKG_CONFIG_PATH=/usr/lib/i386-linux-gnu/pkgconfig" >> $GITHUB_ENV | ||||||
- name: Install 64bit dependencies | ||||||
if: ${{ matrix.bits != '' }} | ||||||
run: | | ||||||
sudo apt-get install -y $DEPS | ||||||
|
||||||
steps: | ||||||
- uses: actions/checkout@v2 | ||||||
- name: Run tests linux-amd64 | ||||||
run: | | ||||||
scripts/tests-ubuntu-amd64.sh | ||||||
- name: Configure | ||||||
run: ./waf configure ${{ matrix.bits }} $WAF_FLAGS | ||||||
- name: Build ${{ matrix.os }} | ||||||
run: ./waf install | ||||||
- name: Run tests | ||||||
run: | | ||||||
cd build_tests | ||||||
LD_LIBRARY_PATH=bin/ ./unittest | ||||||
|
||||||
tests-macos-amd64: | ||||||
tests-macos: | ||||||
runs-on: macos-latest | ||||||
|
||||||
steps: | ||||||
- uses: actions/checkout@v2 | ||||||
- name: Run tests macos-amd64 | ||||||
run: | | ||||||
scripts/tests-macos-amd64.sh | ||||||
- uses: actions/checkout@v3 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
with: | ||||||
submodules: recursive | ||||||
|
||||||
tests-windows-i386: | ||||||
runs-on: windows-2019 | ||||||
- name: Configure | ||||||
run: ./waf configure --64bits $WAF_FLAGS | ||||||
- name: Build macos-amd64 | ||||||
run: ./waf install | ||||||
- name: Run tests | ||||||
run: | | ||||||
cd build_tests | ||||||
DYLD_LIBRARY_PATH=bin/ ./unittest | ||||||
|
||||||
tests-windows: | ||||||
strategy: | ||||||
matrix: | ||||||
os: [windows-2019] | ||||||
bits: ['', '--64bits'] | ||||||
runs-on: ${{ matrix.os }} | ||||||
steps: | ||||||
- uses: actions/checkout@v2 | ||||||
- name: Run tests windows-i386 | ||||||
run: | | ||||||
git submodule init && git submodule update | ||||||
./waf.bat configure -T release --tests --prefix=out/ | ||||||
./waf.bat install | ||||||
cd out | ||||||
$env:Path = "bin"; | ||||||
./unittest.exe | ||||||
|
||||||
tests-windows-amd64: | ||||||
runs-on: windows-2019 | ||||||
- uses: actions/checkout@v3 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
with: | ||||||
submodules: recursive | ||||||
|
||||||
- name: Configure | ||||||
run: ./waf configure ${{ matrix.bits }} ${{ env.WAF_FLAGS }} | ||||||
|
||||||
- name: Build ${{ matrix.os }} | ||||||
run: ./waf install | ||||||
- name: Run tests | ||||||
run: | | ||||||
cd build_tests | ||||||
$env:Path = "bin"; | ||||||
./unittest.exe | ||||||
|
||||||
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 |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.