forked from romie-gr/romie
-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (58 loc) · 1.44 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
name: build
on:
push:
branches:
- 'master'
tags:
- 'v*'
pull_request:
jobs:
Building:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest]
steps:
- name: Checkout out source code
uses: actions/[email protected]
with:
fetch-depth: 0
- if: startsWith(matrix.os,'ubuntu')
name: Set up retroarch
run: |
sudo add-apt-repository -y ppa:libretro/stable && sudo apt-get update
sudo apt-get -y install retroarch*
retroarch --features
ls ~/.config/retroarch
- name: Set up Go environment
uses: actions/[email protected]
with:
go-version: 1.15
- 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 lint
run: |
make lint
- name: make build
run: |
make build
- name: make test
run: |
make test
- name: Upload binary
uses: actions/upload-artifact@v2
with:
name: romie ${{ matrix.os }}
path: ${{ github.workspace }}
- name: make run
run: |
make run