-
Notifications
You must be signed in to change notification settings - Fork 5
47 lines (38 loc) · 1.05 KB
/
all.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
name: All
on: ["push", "pull_request"]
jobs:
build_and_test:
name: "Run tests and build artifacts"
strategy:
matrix:
os: ["ubuntu-latest", "macOS-latest"]
go: ["1.21.x"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v3
name: "Install Golang"
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v3
- name: "Test all"
run: |
make test-all
- name: "Build all"
run: |
make build-all
mkdir dist
mv katzenmint/katzenmint dist
mv server/meson-server dist
mv plugin/meson-plugin dist
mv genconfig/genconfig dist
- if: runner.os == 'macOS'
name: "Setup filename"
run: echo "ZIPNAME=meson_darwin_${{ matrix.go }}" >> $GITHUB_ENV
- if: runner.os == 'Linux'
name: "Setup filename"
run: echo "ZIPNAME=meson_linux_${{ matrix.go }}" >> $GITHUB_ENV
- name: Archive all
uses: actions/upload-artifact@v3
with:
name: ${{ env.ZIPNAME }}
path: dist