blob: 46cd50de12ee476326183b9167807ecbda060c76 (
plain)
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
98
99
100
101
102
103
104
105
106
107
108
109
|
name: pull-request-builds
on:
pull_request:
branches:
- main
jobs:
pull-request-f34-x64:
runs-on: ubuntu-20.04
container: vathpela/efi-ci:f34
name: f34 build
steps:
- name: Checkout
uses: actions/checkout@v2
with:
# otherwise we are testing target branch instead of the PR branch (see pull_request_target trigger)
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: fetch-origin
run: git fetch origin
id: fetch-origin
- name: dammit0
run: git remote -v
id: dammit0
- name: dammit1
run: ls .git/refs/heads/
id: dammit1
- name: Do the build
run: make PREFIX=/usr LIBDIR=/usr/lib64 DESTDIR=/destdir EFIDIR=test ENABLE_HTTPBOOT=true ENABLE_SHIM_HASH=true clean all
id: build
- name: Install in /destdir
run: make PREFIX=/usr LIBDIR=/usr/lib64 DESTDIR=/destdir EFIDIR=test ENABLE_HTTPBOOT=true ENABLE_SHIM_HASH=true install
id: install
# - name: Archive production artifacts
# uses: actions/upload-artifact@v2
# with:
# name: shim
# path: |
# /destdir
pull-request-f33-x64:
runs-on: ubuntu-20.04
container: vathpela/efi-ci:f33
name: f33 build
steps:
- name: Checkout
uses: actions/checkout@v2
with:
# otherwise we are testing target branch instead of the PR branch (see pull_request_target trigger)
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Do the build
run: make PREFIX=/usr LIBDIR=/usr/lib64 DESTDIR=/destdir EFIDIR=test ENABLE_HTTPBOOT=true ENABLE_SHIM_HASH=true clean all
id: build
- name: Install in /destdir
run: make PREFIX=/usr LIBDIR=/usr/lib64 DESTDIR=/destdir EFIDIR=test ENABLE_HTTPBOOT=true ENABLE_SHIM_HASH=true install
id: install
# - name: Archive production artifacts
# uses: actions/upload-artifact@v2
# with:
# name: shim
# path: |
# /destdir
pull-request-f32-x64:
runs-on: ubuntu-20.04
container: vathpela/efi-ci:f32
name: f32 build
steps:
- name: Checkout
uses: actions/checkout@v2
with:
# otherwise we are testing target branch instead of the PR branch (see pull_request_target trigger)
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Do the build
run: make PREFIX=/usr LIBDIR=/usr/lib64 DESTDIR=/destdir EFIDIR=test ENABLE_HTTPBOOT=true ENABLE_SHIM_HASH=true clean all
id: build
- name: Install in /destdir
run: make PREFIX=/usr LIBDIR=/usr/lib64 DESTDIR=/destdir EFIDIR=test ENABLE_HTTPBOOT=true ENABLE_SHIM_HASH=true install
id: install
# - name: Archive production artifacts
# uses: actions/upload-artifact@v2
# with:
# name: shim
# path: |
# /destdir
pull-request-f31-x64:
runs-on: ubuntu-20.04
container: vathpela/efi-ci:f31
name: f31 build
steps:
- name: Checkout
uses: actions/checkout@v2
with:
# otherwise we are testing target branch instead of the PR branch (see pull_request_target trigger)
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Do the build
run: make PREFIX=/usr LIBDIR=/usr/lib64 DESTDIR=/destdir EFIDIR=test ENABLE_HTTPBOOT=true ENABLE_SHIM_HASH=true clean all
id: build
- name: Install in /destdir
run: make PREFIX=/usr LIBDIR=/usr/lib64 DESTDIR=/destdir EFIDIR=test ENABLE_HTTPBOOT=true ENABLE_SHIM_HASH=true install
id: install
# - name: Archive production artifacts
# uses: actions/upload-artifact@v2
# with:
# name: shim
# path: |
# /destdir
|