-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (75 loc) · 1.92 KB
/
go.yml
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install -y libasound2-dev
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Lint
run: make lint
- name: Build
run: make
- name: Test
run: make test-ci
- name: Build with CGO_ENABLED=0
run: make
env:
CGO_ENABLED: 0
- name: Test with CGO_ENABLED=0
run: make test
env:
CI: 1
CGO_ENABLED: 0
- name: Cross-platform build
run: |
make bin/twenty-twenty-twenty-windows-amd64
make bin/twenty-twenty-twenty-windows-arm64
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Test
run: make test-ci
- name: Build
run: make
build-macos-nix:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Build
run: nix build
build-linux-nix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Check Flake
run: nix flake check
- name: Build
run: |
nix build
# non-flake build
nix-build