-
Notifications
You must be signed in to change notification settings - Fork 1
72 lines (68 loc) · 1.98 KB
/
build.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
# Run all tests, linters, code analysis and other QA tasks on
# every push to master and PRs.
#
# To SSH into the runner to debug a failure, add the following step before
# the failing step
# - uses: mxschmitt/action-tmate@v3
# with:
# install-dependencies: false
name: Integration Tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
# Prevent multiple jobs running after fast subsequent pushes
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
name: Unstable build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
# 'latest', 'nightly', or a semver
version: "~> v2"
args: release --skip=publish --clean --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v4
name: Upload release
with:
name: build
path: dist
integration:
name: Test on ${{ matrix.os }}
runs-on: namespace-profile-pareto-linux
needs: build
strategy:
matrix:
os: [ubuntu, debian, fedora, nixos]
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: build
- name: Display structure of downloaded files
run: mkdir -p pkg && mv *.deb pkg && mv *.rpm pkg && ls -l pkg
- uses: ./.github/actions/devenv
with:
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- run: nix run .#test-${{ matrix.os }}
if: matrix.os != 'nixos'
- run: nix flake check .
if: matrix.os == 'nixos'