-
Notifications
You must be signed in to change notification settings - Fork 6
46 lines (37 loc) · 1.02 KB
/
server.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
name: Server
on: ["push", "pull_request"]
jobs:
build_and_test:
name: "Run tests and build artifacts"
strategy:
matrix:
os: ["ubuntu-latest", "macOS-latest"]
go: ["1.17.x", "1.18.x", "1.19.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 server"
run: |
cd server
make
- name: "Build server"
run: |
cd server
make build
mkdir dist
mv meson-server dist
- if: runner.os == 'macOS'
name: "Setup server filename"
run: echo "ZIPNAME=meson_server_darwin_${{ matrix.go }}" >> $GITHUB_ENV
- if: runner.os == 'Linux'
name: "Setup server filename"
run: echo "ZIPNAME=meson_server_linux_${{ matrix.go }}" >> $GITHUB_ENV
- name: Archive server
uses: actions/upload-artifact@v3
with:
name: ${{ env.ZIPNAME }}
path: server/dist