-
Notifications
You must be signed in to change notification settings - Fork 48
49 lines (40 loc) · 984 Bytes
/
build.yml
File metadata and controls
49 lines (40 loc) · 984 Bytes
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
name: CI
on:
push:
branches: [ master ]
pull_request:
permissions:
contents: read
jobs:
format:
name: Format
runs-on: windows-2025
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/check-formatting
build-test:
name: Build and Test
runs-on: windows-2025
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/build-and-test
- name: Upload TRX test results
if: failure()
uses: actions/upload-artifact@v7
with:
name: trx-test-results
if-no-files-found: warn
path: TestResults/**
package:
name: Package ${{ matrix.arch }}
runs-on: windows-2025
strategy:
fail-fast: false
matrix:
arch: [x64, arm64]
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/create-release-artifacts
with:
arch: ${{ matrix.arch }}
artifact-name: desktopclock-${{ matrix.arch }}