-
-
Notifications
You must be signed in to change notification settings - Fork 40
125 lines (104 loc) · 4.17 KB
/
ci-pr.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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
name: Build PR
on:
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
verify:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v1
with:
java-version: 8
# Cache .m2/repository
- uses: actions/cache@v2
env:
cache-name: verify-cache-m2-repository
with:
path: ~/.m2/repository
key: ${{ runner.os }}-pr-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-pr-${{ env.cache-name }}-
${{ runner.os }}-pr-
- name: Verify with Maven
run: mvn verify -B --file pom.xml -DskipTests=true
build-pr:
runs-on: ubuntu-latest
needs: verify
strategy:
matrix:
include:
- setup: linux-x86_64-java8
docker-compose-build: "-f docker/docker-compose.centos-6.yaml -f docker/docker-compose.centos-6.18.yaml build"
docker-compose-run: "-f docker/docker-compose.centos-6.yaml -f docker/docker-compose.centos-6.18.yaml run build-leak"
- setup: linux-aarch64
docker-compose-build: "-f docker/docker-compose.centos-7.yaml build"
docker-compose-run: "-f docker/docker-compose.centos-7.yaml run cross-compile-aarch64-build"
name: ${{ matrix.setup }}
steps:
- uses: actions/checkout@v2
# Enable caching of Docker layers
- uses: satackey/action-docker-layer-caching@v0.0.11
continue-on-error: true
with:
key: pr-${{ matrix.setup }}-docker-cache-{hash}
restore-keys: |
pr-${{ matrix.setup }}-docker-cache-
- name: Build docker image
run: docker-compose ${{ matrix.docker-compose-build }}
- name: Build project with leak detection
run: docker-compose ${{ matrix.docker-compose-run }} | tee build-leak.output
- name: Checking for detected leak
run: ./.github/scripts/check_leak.sh build-leak.output
- uses: actions/upload-artifact@v2
if: ${{ failure() }}
with:
name: target
path: "**/target/"
build-pr-qemu:
runs-on: ubuntu-20.04
needs: verify
steps:
- name: Install dependencies
run: |
sudo apt-get update -q -y
sudo apt-get install -q -y qemu-system genisoimage expect samba
- name: Create qemu image directory
run: mkdir /home/runner/.qemu/
- uses: actions/checkout@v2
# Cache qemu image
- uses: actions/cache@v2
env:
cache-name: build-pr-qemu-cache
with:
path: /home/runner/.qemu/
key: ${{ runner.os }}-pr-${{ env.cache-name }}-${{ hashFiles('./github/config/user-data') }}
restore-keys: |
${{ runner.os }}-pr-${{ env.cache-name }}-
${{ runner.os }}-pr-
- name: Check qemu image exists
id: check_qemu_image_exists
uses: andstor/file-existence-action@v1
with:
files: "/home/runner/.qemu/my-disk.qcow2, /home/runner/.qemu/my-seed.iso, /home/runner/.qemu/Fedora-Cloud-Base-33-1.2.x86_64.qcow2"
# We don't need a custom kernel atm.
#- name: Build kernel
# if: steps.check_kernel_image_exists.outputs.files_exists == 'false'
# run: bash ./.github/scripts/build_kernel.sh /home/runner/kernel/bzImage-5.9.16
- name: Build qemu image
if: steps.check_qemu_image_exists.outputs.files_exists == 'false'
run: bash ./.github/scripts/build_qemu_image.sh /home/runner/.qemu/ my-disk.qcow2 my-seed.iso ./.github/config/user-data ./.github/config/meta-data
- name: Build project via QEMU
run: expect -f ./.github/scripts/qemu_build.exp /home/runner/.qemu my-disk.qcow2 my-seed.iso | tee build.output
- name: Checking for build result
run: bash ./.github/scripts/check_build_result.sh build.output
- name: Checking for detected leak
run: bash ./.github/scripts/check_leak.sh build.output
- uses: actions/upload-artifact@v2
if: ${{ failure() }}
with:
name: build-target
path: "**/target/"