File: windows.yml

package info (click to toggle)
tbox 1.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,820 kB
  • sloc: ansic: 87,850; sh: 4,947; asm: 1,185; makefile: 8; cpp: 5
file content (36 lines) | stat: -rw-r--r-- 785 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Windows

on:
  pull_request:
  push:

jobs:
  build:
    strategy:
      matrix:
        os: [windows-latest]
        arch: [x64, x86]

    runs-on: ${{ matrix.os }}

    steps:
      - uses: actions/checkout@v1
      - uses: xmake-io/github-action-setup-xmake@v1
        with:
          xmake-version: branch@dev
          build-cache: true
          build-cache-key: ${{ matrix.arch }}

      - name: Tests
        run: |
          xmake f -a ${{ matrix.arch }}
          xmake run demo
          xmake f -m debug -a ${{ matrix.arch }}
          xmake -r
          xmake run demo
          xmake f --micro=y -a ${{ matrix.arch }}
          xmake -r
          xmake run demo
          xmake f --small=y -m debug -a ${{ matrix.arch }}
          xmake -r
          xmake run demo