112 lines
3.3 KiB
YAML
112 lines
3.3 KiB
YAML
name: CI Workflow
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
linux:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
config: [debug, release]
|
|
platform: [x64]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Build
|
|
run: make -f Bootstrap.mak linux PLATFORM=${{ matrix.platform }} CONFIG=${{ matrix.config }}
|
|
- name: Test
|
|
run: bin/${{ matrix.config }}/premake5 test --test-all
|
|
- name: Docs check
|
|
run: bin/${{ matrix.config }}/premake5 docs-check
|
|
- name: Upload Artifacts
|
|
if: matrix.config == 'release'
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: premake-linux-${{ matrix.platform }}
|
|
path: bin/${{ matrix.config }}/
|
|
macosx:
|
|
runs-on: macos-latest
|
|
strategy:
|
|
matrix:
|
|
config: [debug, release]
|
|
platform: [x64]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Build
|
|
run: make -f Bootstrap.mak macosx PLATFORM=${{ matrix.platform }} CONFIG=${{ matrix.config }}
|
|
- name: Test
|
|
run: bin/${{ matrix.config }}/premake5 test --test-all
|
|
- name: Docs check
|
|
run: bin/${{ matrix.config }}/premake5 docs-check
|
|
- name: Upload Artifacts
|
|
if: matrix.config == 'release'
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: premake-macosx-${{ matrix.platform }}
|
|
path: bin/${{ matrix.config }}/
|
|
windows:
|
|
runs-on: windows-latest
|
|
strategy:
|
|
matrix:
|
|
config: [debug, release]
|
|
platform: [Win32, x64]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Build
|
|
run: |
|
|
$vcvarsall_path = vswhere.exe -find VC\Auxiliary\Build\vcvarsall.bat
|
|
cmd.exe /c "call ""$vcvarsall_path"" x86_amd64 && nmake -f Bootstrap.mak MSDEV=vs2019 windows-msbuild PLATFORM=${{ matrix.platform }} CONFIG=${{ matrix.config }}"
|
|
- name: Test
|
|
run: bin\${{ matrix.config }}\premake5 test --test-all
|
|
shell: cmd
|
|
- name: Docs check
|
|
run: bin\${{ matrix.config }}\premake5 docs-check
|
|
shell: cmd
|
|
- name: Upload Artifacts
|
|
if: matrix.config == 'release'
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: premake-windows-${{ matrix.platform }}
|
|
path: bin\${{ matrix.config }}\
|
|
mingw:
|
|
runs-on: windows-2022
|
|
strategy:
|
|
matrix:
|
|
config: [debug, release]
|
|
msystem: [mingw32, mingw64]
|
|
include:
|
|
- platform: x86
|
|
msystem: mingw32
|
|
- platform: x64
|
|
msystem: mingw64
|
|
defaults:
|
|
run:
|
|
shell: msys2 {0}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: 'Setup MSYS2'
|
|
uses: msys2/setup-msys2@v2
|
|
with:
|
|
msystem: ${{ matrix.msystem }}
|
|
update: true
|
|
install: >-
|
|
git
|
|
make
|
|
pacboy: >-
|
|
toolchain:p
|
|
- name: Build
|
|
run: make -f Bootstrap.mak mingw PLATFORM=${{ matrix.platform }} CONFIG=${{ matrix.config }}
|
|
- name: Test
|
|
run: bin/${{ matrix.config }}/premake5.exe test --test-all
|
|
- name: Docs check
|
|
run: bin/${{ matrix.config }}/premake5.exe docs-check
|
|
- name: Upload Artifacts
|
|
if: matrix.config == 'release'
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: premake-${{ matrix.msystem }}-${{ matrix.platform }}
|
|
path: bin\${{ matrix.config }}\
|