-
Notifications
You must be signed in to change notification settings - Fork 15
69 lines (62 loc) · 2.52 KB
/
integration.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: Integration Test BootGuard
on:
push:
tags:
- v*
branches:
- main
- feat/addBtGTests
pull_request:
jobs:
build:
strategy:
matrix:
go-arch: [amd64, arm64]
runs-on: ubuntu-latest
env:
CGO_ENABLED: 0
GOARCH: ${{ matrix.go-arch }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build txt-suite
run: go build -ldflags '-X main.gitcommit=${GITHUB_SHA} -X main.gittag=${github.ref_name} -w -extldflags "-static"' -o txt-suite cmd/txt-suite/*.go
- name: Build txt-prov
run: go build -ldflags '-X main.gitcommit=${GITHUB_SHA} -X main.gittag=${github.ref_name} -w -extldflags "-static"' -o txt-prov cmd/txt-prov/*.go
- name: Build bg-suite
run: go build -ldflags '-X main.gitcommit=${GITHUB_SHA} -X main.gittag=${github.ref_name} -w -extldflags "-static"' -o bg-suite cmd/bg-suite/*.go
- name: Build bg-prov
run: go build -ldflags '-X main.gitcommit=${GITHUB_SHA} -X main.gittag=${github.ref_name} -w -extldflags "-static"' -o bg-prov cmd/bg-prov/*.go
- name: Build pcr0tool
run: go build -ldflags '-X main.gitcommit=${GITHUB_SHA} -X main.gittag=${github.ref_name} -w -extldflags "-static"' -o pcr0tool cmd/pcr0tool/*.go
- name: Build amd-suite
run: go build -ldflags '-X main.gitcommit=${GITHUB_SHA} -X main.gittag=${github.ref_name} -w -extldflags "-static"' -o amd-suite cmd/amd-suite/*.go
- name: Save artifacts
uses: actions/upload-artifact@v4
with:
name: artifacts-${{ matrix.go-arch }}
path: |
./txt-suite
./txt-prov
./bg-suite
./bg-prov
./pcr0tool
./amd-suite
test:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download file
run: |
wget https://download.lenovo.com/pccbbs/mobiles/n2yur17w.iso ./n2yur17w.iso
- name: Mount Image
id: mount-image
uses: damianperera/mount-image-action@v1
with:
imagePath: ./n2yur17w.iso
mountPoint: /mnt/firmwareImage
- name: Check Image
run: |
ls -l /mnt/firmwareImage