File tree Expand file tree Collapse file tree 1 file changed +55
-0
lines changed
Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+
3+ name : Build Docker images
4+
5+ # This matches the Docker image building done in the release process.
6+
7+ on :
8+ push :
9+ branches : [master]
10+ pull_request :
11+ branches : [master]
12+ schedule :
13+ # * is a special character in YAML so you have to quote this string
14+ # Run at 1:00 every day
15+ - cron : ' 0 1 * * *'
16+
17+ jobs :
18+ build :
19+ name : Build Docker images
20+ runs-on : ubuntu-latest
21+
22+ steps :
23+ - uses : actions/checkout@v2
24+
25+ - name : Build base Docker image
26+ uses : docker/build-push-action@v2.7.0
27+ with :
28+ file : src/mock_vws/_flask_server/dockerfiles/base/Dockerfile
29+ push : false
30+ tags : |
31+ vws-mock:base
32+
33+ - name : Build and push target manager Docker image
34+ uses : docker/build-push-action@v2.7.0
35+ with :
36+ file : src/mock_vws/_flask_server/dockerfiles/target_manager/Dockerfile
37+ push : false
38+ tags : |
39+ adamtheturtle/vuforia-target-manager-mock:latest
40+
41+ - name : Build and push VWS Docker image
42+ uses : docker/build-push-action@v2.7.0
43+ with :
44+ file : src/mock_vws/_flask_server/dockerfiles/vws/Dockerfile
45+ push : false
46+ tags : |
47+ adamtheturtle/vuforia-vws-mock:latest
48+
49+ - name : Build and push VWQ Docker image
50+ uses : docker/build-push-action@v2.7.0
51+ with :
52+ file : src/mock_vws/_flask_server/dockerfiles/vwq/Dockerfile
53+ push : false
54+ tags : |
55+ adamtheturtle/vuforia-vwq-mock:latest
You can’t perform that action at this time.
0 commit comments