-
-
Notifications
You must be signed in to change notification settings - Fork 5
68 lines (56 loc) · 1.87 KB
/
build-x86.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
name: Build cr-boot for x86_64 platforms
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container:
image: registry.fedoraproject.org/fedora-minimal:39
steps:
- name: Install dependencies
run: |
dnf5 update -y
dnf5 install -y git make gcc ccache flex bison elfutils-devel parted vboot-utils golang xz bc tar
- uses: actions/checkout@v3
with:
submodules: true
- name: Add Git safe directory
run: |
git config --global --add safe.directory $(pwd)
- name: Setup enviroment variables
run: |
echo "PATH=$PATH:$HOME/go/bin" >> $GITHUB_ENV
echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
echo "CCACHE_DIR=$(pwd)/ccache" >> $GITHUB_ENV
echo "UROOT_COMMIT=$(git rev-parse HEAD:u-root)" >> $GITHUB_ENV
echo "KERNEL_COMMIT=$(git rev-parse HEAD:kernel)" >> $GITHUB_ENV
- name: Setup Go cache
uses: actions/cache@v3
with:
path: ${{ env.GOCACHE }}
key: go-${{ env.UROOT_COMMIT }}
restore-keys: |
go-
- name: Setup ccache cache
uses: actions/cache@v3
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ env.KERNEL_COMMIT }}-${{ hashFiles('kernel.config') }}
restore-keys: |
ccache-${{ env.KERNEL_COMMIT }}-
ccache-
- name: Install u-root
run: go install github.com/u-root/u-root@$UROOT_COMMIT
- name: Copy cr-boot kernel config for x86
run: cp configs/kernel.x86 kernel/.config
- name: Build cr-boot for x86_64
run: make CC="ccache gcc" -j$(nproc)
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: cr-boot
path: build