-
Notifications
You must be signed in to change notification settings - Fork 203
97 lines (83 loc) · 2.58 KB
/
ci.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
name: CI
on:
pull_request:
branches: [ master ]
jobs:
build:
name: Build
strategy:
matrix:
go-version: [1.23.x, 1.22.x]
platform: [ubuntu-20.04, macos-latest]
runs-on: ${{ matrix.platform }}
env:
GO111MODULE: on
GOPATH: ${{ github.workspace }}
DISPLAY: ":99.0"
EGL_PLATFORM: "x11"
defaults:
run:
working-directory: ${{ env.GOPATH }}/src/gonum.org/v1/plot
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
with:
path: ${{ env.GOPATH }}/src/gonum.org/v1/plot
fetch-depth: 1
- name: Cache-Go
uses: actions/cache@v4
with:
# In order:
# * Module download cache
# * Build cache (Linux)
# * Build cache (Mac)
# * Build cache (Windows)
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
'%LocalAppData%\go-build'
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Install Linux packages
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -qq gcc pkg-config libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev libvulkan-dev xvfb xdotool
# start a virtual frame buffer
Xvfb :99 -screen 0 1920x1024x24 &
- name: Check copyrights+formatting
run: |
# Required for format check.
go install golang.org/x/tools/cmd/goimports@latest
# Required for imports check.
go install gonum.org/v1/tools/cmd/check-imports@latest
# Required for copyright header check.
go install gonum.org/v1/tools/cmd/check-copyright@latest
./.ci/check-copyright.sh
./.ci/check-formatting.sh
- name: Build
run: |
go install -v ./...
- name: Test Linux
if: matrix.platform == 'ubuntu-20.04'
run: |
go test -v ./...
./.ci/check-imports.sh
./.ci/test-coverage.sh
- name: Test Windows
if: matrix.platform == 'windows-latest'
run: |
go test -v ./...
- name: Test Darwin
if: matrix.platform == 'macos-latest'
run: |
go test -v ./...
- name: Upload-Coverage
if: matrix.platform == 'ubuntu-20.04'
uses: codecov/codecov-action@v2