-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (44 loc) · 1.32 KB
/
build-dive.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
name: Build dive
on:
workflow_dispatch:
schedule:
- cron: '32 0 * * 6'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: build
run : |
docker system prune -f
rm -rf dive
docker build --no-cache -t dev -f Dockerfile.dive .
docker create --name dev dev
docker cp dev:/dive_linux_arm64 dive_linux_arm64
docker cp dev:/dive_linux_amd64 dive_linux_amd64
- name: Cache dive save
uses: actions/cache/save@v4
with:
key : dive
path: |
dive_linux_*
# build-aarch64:
# runs-on: self-hosted
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# - name: build
# run : |
# docker system prune -f
# rm -rf dive
# docker build --no-cache -t dev -f Dockerfile.dive .
# docker create --name dev dev
# docker cp dev:/dive_linux_arm64 dive_linux_arm64
# docker cp dev:/dive_linux_amd64 dive_linux_amd64
# - name: Cache dive save
# uses: actions/cache/save@v4
# with:
# key : dive
# path: |
# dive