-
Notifications
You must be signed in to change notification settings - Fork 0
93 lines (77 loc) · 2.37 KB
/
ci.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
name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 1 * * 6" # 09:00hrs SGT
defaults:
run:
# NOTE: Default option does not include `-o pipefail` as documented
# unless explicitly specifying the `bash` shell.
# https://github.com/actions/runner/issues/353
shell: bash
jobs:
build-kicad-full:
runs-on: ubuntu-22.04
timeout-minutes: 10
strategy:
matrix:
version:
- "8.0.3"
steps:
- name: Checkout branch
uses: actions/[email protected]
- name: Set up QEMU static libraries
uses: docker/[email protected]
- name: Set up Buildx builder
uses: docker/[email protected]
- name: Build container image
run: |
docker build \
--build-arg "KICAD_VERSION=${{ matrix.version }}" \
--tag "loozhengyuan/kicad:${{ matrix.version }}-full" \
./kicad-full
- name: Login to Docker Hub
if: ${{ github.ref == 'refs/heads/main' }}
uses: docker/login-action@v3
with:
username: loozhengyuan
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push container image
if: ${{ github.ref == 'refs/heads/main' }}
run: |
docker push "loozhengyuan/kicad:${{ matrix.version }}-full"
build-verdaccio-unsafe:
runs-on: ubuntu-22.04
timeout-minutes: 3
strategy:
matrix:
version:
- "5.31.1"
steps:
- name: Checkout branch
uses: actions/[email protected]
- name: Set up QEMU static libraries
uses: docker/[email protected]
- name: Set up Buildx builder
uses: docker/[email protected]
- name: Build container image
run: |
docker build \
--build-arg "VERDACCIO_VERSION=${{ matrix.version }}" \
--tag "loozhengyuan/verdaccio:${{ matrix.version }}-unsafe" \
./verdaccio-unsafe
- name: Login to Docker Hub
if: ${{ github.ref == 'refs/heads/main' }}
uses: docker/login-action@v3
with:
username: loozhengyuan
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push container image
if: ${{ github.ref == 'refs/heads/main' }}
run: |
docker push "loozhengyuan/verdaccio:${{ matrix.version }}-unsafe"