Skip to content

Commit f7f090e

Browse files
committed
commit to test amazonlinux build in regular CI run (to be removed)
1 parent d9ec466 commit f7f090e

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.github/workflows/ci.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,40 @@ jobs:
6767
DATABASE_URL: postgres://postgres:password@localhost:5432/scalelite_test
6868
run: |
6969
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

0 commit comments

Comments
 (0)