package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.2 KiB

5 years ago
name: Windows
on:
pull_request:
4 years ago
branches:
- dev
5 years ago
jobs:
build:
strategy:
fail-fast: false
5 years ago
matrix:
os: [windows-2019, windows-2022]
4 years ago
kind: [static, shared]
4 years ago
arch: [x64, x86]
4 years ago
vs_runtime: [MT, MD]
5 years ago
runs-on: ${{ matrix.os }}
3 years ago
concurrency:
group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Windows-${{ matrix.os }}-${{ matrix.kind }}-${{ matrix.os }}-${{ matrix.vs_runtime }}
cancel-in-progress: true
5 years ago
steps:
- uses: actions/checkout@v1
- uses: xmake-io/github-action-setup-xmake@v1
with:
4 years ago
xmake-version: branch@dev
5 years ago
- name: Configure Pagefile
uses: al-cheb/configure-pagefile-action@v1.2
with:
minimum-size: 8GB
maximum-size: 32GB
disk-root: "D:"
4 years ago
- name: Tests
5 years ago
run: |
if ("${{ matrix.os }}" -eq "windows-2019") {
xmake l ./scripts/test.lua -D -a ${{ matrix.arch }} -k ${{ matrix.kind }} --vs_runtime=${{ matrix.vs_runtime }} --vs_sdkver=10.0.19041.0 --linkjobs=2
} else {
xmake l ./scripts/test.lua -D -a ${{ matrix.arch }} -k ${{ matrix.kind }} --vs_runtime=${{ matrix.vs_runtime }} --linkjobs=2
}