-
Notifications
You must be signed in to change notification settings - Fork 0
102 lines (99 loc) · 2.95 KB
/
ci.yaml
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
name: CI
on:
pull_request:
push:
tags:
- 'v*'
branches:
- 'main'
- 'feature/*'
jobs:
pre-commit:
name: "Run Pre-Commit Checks"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/[email protected]
artifacts:
name: "Build Artifacts"
needs: pre-commit
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/[email protected]
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build
uses: docker/build-push-action@v6
with:
push: false
context: bootloader
cache-from: type=gha
cache-to: type=gha,mode=max
outputs: type=local,dest=./out
- name: Copy Artifacts
run: |
mkdir artifacts
cp -r ./host-software ./artifacts
mkdir ./artifacts/bootloader
cp ./out/xcore-boot.bin ./artifacts/bootloader
cp ./out/xcore-boot.elf ./artifacts/bootloader
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: bootloader
path: artifacts/
tagged-release:
runs-on: ubuntu-latest
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
needs: artifacts
steps:
- name: Download artifacts from build stage
uses: actions/download-artifact@v4
with:
name: bootloader
path: artifacts
- name: Compress release directory into a versioned ZIP file
run: zip -r "xcore-boot-${{ github.ref_name }}.zip" artifacts/*
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: "xcore-boot-${{ github.ref_name }}.zip"
build-host-docker:
name: "Build Host Software Docker Image"
needs: pre-commit
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./host-software
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
- name: Build and push
id: build-and-push
uses: docker/build-push-action@v5
with:
context: host-software
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: true
cache-from: type=gha
cache-to: type=gha,mode=max