forked from argenos/b-it-bots-docker
-
Notifications
You must be signed in to change notification settings - Fork 6
147 lines (114 loc) · 3.34 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
---
name: CI
on:
pull_request:
push:
branches:
- master
schedule:
- cron: "0 1 * * 0"
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
outputs:
owner: ${{ steps.setup_image.outputs.owner }}
steps:
- uses: actions/checkout@v2
- name: Setup image
id: setup_image
run: |
if [ "$GITHUB_EVENT_NAME" = "pull_request" ]
then
GH_BRANCH=$GITHUB_BASE_REF
else
GH_BRANCH=${GITHUB_REF##*/}
fi
echo "::set-output name=owner::ghcr.io/b-it-bots/docker"
# split jobs to avoid using large storage capacity (limited by gh)
build-gpu-notebook:
name: Build gpu-notebook image
needs: setup
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Install sphinx dependencies
run: |
sudo pip3 install --upgrade pip
- name: Build image
id: build_image
run: |
OWNER=${{ needs.setup.outputs.owner }}
bash build_and_publish.sh --registry ghcr.io --publish "" --image gpu-notebook
- name: Docker image list
run: docker images
build-domestic:
name: Build domestic image
needs: setup
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Install sphinx dependencies
run: |
sudo pip3 install --upgrade pip
- name: Build image
id: build_image
run: |
OWNER=${{ needs.setup.outputs.owner }}
bash build_and_publish.sh --registry ghcr.io --publish "" --image domestic
- name: Docker image list
run: docker images
publish-gpu-notebook:
name: Build and publish gpu-notebook
needs: setup
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_TOKEN }}
- name: Build and deploy image
id: build_and_deploy_image
run: |
OWNER=${{ needs.setup.outputs.owner }}
bash build_and_publish.sh --registry ghcr.io --publish "all" --image gpu-notebook
- name: Docker image list
run: docker images
publish-domestic:
name: Build and publish domestic
needs: setup
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_TOKEN }}
- name: Build and deploy image
id: build_and_deploy_image
run: |
OWNER=${{ needs.setup.outputs.owner }}
bash build_and_publish.sh --registry ghcr.io --publish "all" --image domestic
- name: Docker image list
run: docker images