-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (37 loc) · 1.02 KB
/
Build_Linux.yml
File metadata and controls
42 lines (37 loc) · 1.02 KB
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
name: Build Linux
on:
push:
branches:
- master
- '*Test*'
jobs:
Test:
env:
project: PopCameraDevice
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
config:
- os: ubuntu-latest
type: linux
arch: x86_64
# disabled whilst no nvidia runner
#- os: Nvidia
# type: linux
# arch: arm64
# disabled pi whilst pi build machine is offline.
#- os: Pi4
# type: linux
# architecture: arm64
steps:
# gr: fetch-depth:0 to override tags. To get rid of "existing tag will be clobbered" when we move a tag. This only seems to happen on the pi self runner (git version?)
- uses: actions/checkout@v2
with:
submodules: "recursive"
#fetch-depth: 0
- name: Linux
uses: NewChromantics/PopAction_BuildLinux@v1
with:
os: ${{ matrix.config.os }}
project: ${{ env.project }}
arch: ${{ matrix.config.os }}