summaryrefslogtreecommitdiffstats
path: root/.github/workflows/windows.yml
blob: 7c1c9613747862823c9233b0e5b6168bdf8e15bb (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Windows

on:
  pull_request:
  push:
  release:
    types: published

jobs:
  build:
    runs-on: windows-latest

    strategy:
      fail-fast: false
      matrix:
        include:
        - arch: 'x64'
          suffix: ''
        - arch: 'arm64'
          suffix: 'arm64'

    steps:
    - uses: actions/checkout@v2

    - name: Install dependencies
      run: choco install re2c

    - name: Build ninja
      shell: bash
      run: |
        cmake -Bbuild -A ${{ matrix.arch }}
        cmake --build build --parallel --config Debug
        cmake --build build --parallel --config Release

    - name: Test ninja (Debug)
      if: matrix.arch != 'arm64'
      run: .\ninja_test.exe
      working-directory: build/Debug

    - name: Test ninja (Release)
      if: matrix.arch != 'arm64'
      run: .\ninja_test.exe
      working-directory: build/Release

    - name: Create ninja archive
      shell: bash
      run: |
        mkdir artifact
        7z a artifact/ninja-win${{ matrix.suffix }}.zip ./build/Release/ninja.exe

    # Upload ninja binary archive as an artifact
    - name: Upload artifact
      uses: actions/upload-artifact@v3
      with:
        name: ninja-binary-archives
        path: artifact

    - name: Upload release asset
      if: github.event.action == 'published'
      uses: actions/upload-release-asset@v1.0
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      with:
        upload_url: ${{ github.event.release.upload_url }}
        asset_path: ./artifact/ninja-win${{ matrix.suffix }}.zip
        asset_name: ninja-win${{ matrix.suffix }}.zip
        asset_content_type: application/zip