v1.6.0-alpha.1 #47
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
env: | |
RUBY_VERSION: 2.7.x | |
name: CI Build Pre-Release | |
on: | |
release: | |
types: [prereleased] | |
jobs: | |
main: | |
name: Build Docker Image | |
env: | |
DOCKER_REPOSITORY: ${{ secrets.DOCKER_REPOSITORY }} | |
DOCKER_BUILD_ENABLED: ${{ secrets.DOCKER_BUILD_ENABLED }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/setup-buildx-action@v2 | |
- name: Cache Docker layers | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: actions/cache@v3 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Login to DockerHub | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Extract Docker Repository | |
id: ci_docker_repository | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
shell: bash | |
run: echo "repository=$(echo ${DOCKER_REPOSITORY:-$GITHUB_REPOSITORY})" >> $GITHUB_OUTPUT | |
- name: Extract Tag Release Revision | |
id: ci_tag_release | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
shell: bash | |
run: echo "tag=$(echo ${GITHUB_REF#refs/tags/})" >> $GITHUB_OUTPUT | |
- name: Build and Push nginx | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
target: nginx | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-nginx" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Build and Push api | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
target: api | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}" | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-api" | |
build-args: "BUILD_NUMBER=${{ steps.ci_tag_release.outputs.tag }}" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Build and Push poller | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
target: poller | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-poller" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Build and Push recording-importer | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
target: recording-importer | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-recording-importer" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
# Alternate Images for bbb-focal-260 with alpine | |
- name: Alternate Alpine Build and Push nginx | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
file: dockerfiles/v1/focal260-alpine | |
push: true | |
target: nginx | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-alpine-nginx" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Alternate Alpine Build and Push api | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
file: dockerfiles/v1/focal260-alpine | |
push: true | |
target: api | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-alpine" | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-alpine-api" | |
build-args: "BUILD_NUMBER=${{ steps.ci_tag_release.outputs.tag }}" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Alternate Alpine Build and Push poller | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
file: dockerfiles/v1/focal260-alpine | |
push: true | |
target: poller | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-alpine-poller" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Alternate Alpine Build and Push recording-importer | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
file: dockerfiles/v1/focal260-alpine | |
push: true | |
target: recording-importer | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-alpine-recording-importer" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
# Alternate Images for bbb-focal-260 with amazonlinux | |
- name: Alternate Amazon Linux Build and Push nginx | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
file: dockerfiles/v1/focal260-amazonlinux | |
push: true | |
target: nginx | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-amazonlinux-nginx" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Alternate Amazon Linux Build and Push api | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
file: dockerfiles/v1/focal260-amazonlinux | |
push: true | |
target: api | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-amazonlinux" | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-amazonlinux-api" | |
build-args: "BUILD_NUMBER=${{ steps.ci_tag_release.outputs.tag }}" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Alternate Amazon Linux Build and Push poller | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
file: dockerfiles/v1/focal260-amazonlinux | |
push: true | |
target: poller | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-amazonlinux-poller" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Alternate Amazon Linux Build and Push recording-importer | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
file: dockerfiles/v1/focal260-amazonlinux | |
push: true | |
target: recording-importer | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-amazonlinux-recording-importer" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
# Alternate Images for bbb-focal-260 with amazonlinux | |
- name: Alternate Amazon Linux Build and Push nginx | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
file: dockerfiles/v1/focal260-amazonlinux | |
push: true | |
target: nginx | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-amazonlinux-nginx" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Alternate Amazon Linux Build and Push api | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
file: dockerfiles/v1/focal260-amazonlinux | |
push: true | |
target: api | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-amazonlinux" | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-amazonlinux-api" | |
build-args: "BUILD_NUMBER=${{ steps.ci_tag_release.outputs.tag }}" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Alternate Amazon Linux Build and Push poller | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
file: dockerfiles/v1/focal260-amazonlinux | |
push: true | |
target: poller | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-amazonlinux-poller" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Alternate Amazon Linux Build and Push recording-importer | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
uses: docker/build-push-action@v3 | |
with: | |
file: dockerfiles/v1/focal260-amazonlinux | |
push: true | |
target: recording-importer | |
tags: | | |
"${{ steps.ci_docker_repository.outputs.repository }}:${{ steps.ci_tag_release.outputs.tag }}-focal260-amazonlinux-recording-importer" | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
- name: Move cache | |
if: contains(env.DOCKER_BUILD_ENABLED, 'true') | |
run: | | |
rm -rf /tmp/.buildx-cache | |
mv /tmp/.buildx-cache-new /tmp/.buildx-cache |