-
Notifications
You must be signed in to change notification settings - Fork 15
51 lines (44 loc) · 1.13 KB
/
Build_Linux.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
name: Build Linux
on:
pull_request:
workflow_dispatch:
push:
branches:
- master
- '*Test*'
jobs:
Build:
env:
project: PopH264
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
config:
- os: ubuntu-latest
type: linux
arch: x86_64
# nvidia temporarily disabled... compiler out of date?
#- os: Nvidia
# type: linux
# arch: arm64
#- os: ubuntu-18.04
# type: linux
# arch: armv8
# flag: pi
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Linux
uses: NewChromantics/PopAction_BuildLinux@v1
with:
os: ${{ matrix.config.os }}
project: ${{ env.project }}
arch: ${{ matrix.config.arch }}
flag: ${{ matrix.config.flag }}
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
# tsdk: these env vars are set in each of the actions
name: ${{ env.UPLOAD_NAME }}
path: ${{ env.UPLOAD_DIR }}