-
-
Notifications
You must be signed in to change notification settings - Fork 46
62 lines (54 loc) · 1.49 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
name: build
on:
workflow_dispatch:
push:
branches:
- 'master'
tags:
- 'v*'
pull_request:
jobs:
Building:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# https://github.com/actions/virtual-environments#available-environments
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout out source code
uses: actions/[email protected]
with:
fetch-depth: 0
submodules: 'true'
- if: startsWith(matrix.os,'ubuntu')
name: Set up LibGL, Mesa & X11 libraries
run: |
sudo apt-get --allow-releaseinfo-change update
sudo apt-get install -y libgtk-3-dev libasound2-dev libxxf86vm-dev
- name: Set up Go environment
uses: actions/[email protected]
with:
go-version: 1.16.5
id: go
- name: Cache Go modules
uses: actions/[email protected]
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: make setup
run: |
make setup
- name: make build
run: |
make build
- name: make test
run: |
make test
- name: headless test
uses: GabrielBB/xvfb-action@v1
with:
# this is running only on Ubuntu: /usr/bin/xvfb-run --auto-servernum go test -v -race ./...
run: go test -v -race ./...