File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 67
67
DATABASE_URL : postgres://postgres:password@localhost:5432/scalelite_test
68
68
run : |
69
69
bundle exec rspec
70
+
71
+ build :
72
+ name : Test Amazonlinux Docker Build
73
+ runs-on : ubuntu-24.04
74
+ env :
75
+ DOCKER_REPOSITORY : ${{ secrets.DOCKER_REPOSITORY }}
76
+ DOCKER_BUILD_ENABLED : ${{ secrets.DOCKER_BUILD_ENABLED }}
77
+ DOCKER_BUILD_ALTERNATE_ENABLED : ${{ secrets.DOCKER_BUILD_ALTERNATE_ENABLED }}
78
+ DOCKER_BUILD_ON_PUSH_DISABLED : ${{ secrets.DOCKER_BUILD_ON_PUSH_DISABLED }}
79
+ steps :
80
+ - name : Alternate Amazon Linux Build nginx
81
+ uses : docker/build-push-action@v3
82
+ with :
83
+ file : dockerfiles/v1/focal260-amazonlinux
84
+ push : false
85
+ target : nginx
86
+
87
+ - name : Alternate Amazon Linux Build api
88
+ uses : docker/build-push-action@v3
89
+ with :
90
+ file : dockerfiles/v1/focal260-amazonlinux
91
+ push : false
92
+ target : api
93
+
94
+ - name : Alternate Amazon Linux Build poller
95
+ uses : docker/build-push-action@v3
96
+ with :
97
+ file : dockerfiles/v1/focal260-amazonlinux
98
+ push : false
99
+ target : poller
100
+
101
+ - name : Alternate Amazon Linux Build recording-importer
102
+ uses : docker/build-push-action@v3
103
+ with :
104
+ file : dockerfiles/v1/focal260-amazonlinux
105
+ push : false
106
+ target : recording-importer
You can’t perform that action at this time.
0 commit comments