axmol/.github/workflows/winuwp.yml

53 lines
1.3 KiB
YAML

name: winuwp
on:
push:
branches:
- dev
- release
paths-ignore:
- '**.md'
- 'docs/**'
jobs:
toolset-latest:
if: ${{ !startsWith(github.event.commits[0].message, 'Merge pull request') }}
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/actions/configuring-and-managing-workflows/configuring-a-workflow#configuring-a-build-matrix
runs-on: windows-latest
strategy:
matrix:
arch:
- x64
- arm64
env:
BUILD_ARCH: ${{ matrix.arch }}
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.7.8'
- uses: ilammy/msvc-dev-cmd@v1.12.1
with:
arch: ${{ env.BUILD_ARCH }}
uwp: true
- name: Build
run: tools/ci/build1k.ps1 -p winuwp -a $env:BUILD_ARCH -xb '--config','Release','--target','cpp_tests'
- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.arch }}
path: |
build_*/tests/**/AppPackages/**/*.msix