PeriodicBuild #73
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
name: PeriodicBuild | |
on: | |
schedule: | |
# Cron syntax has five fields separated by a space, and each field represents a unit of time. | |
# Min hour day-of-month month day-of-week | |
- cron: '0 9 * * 1' | |
workflow_dispatch: | |
jobs: | |
build-ubuntu: | |
runs-on: ubuntu-20.04 | |
name: DockerBuildPushUbuntuBase | |
steps: | |
# First check out the repository to get the docker file | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Log in to Docker Hub | |
- name: Login | |
uses: docker/login-action@v2 | |
with: | |
username: helenbrooks | |
password: ${{ secrets.DOCKERHUB_SECRET }} | |
- name: BuildPush | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
tags: helenbrooks/aurora-base-ubuntu:github_workflow_${{ github.run_id }} | |
file: docker/aurora-base-ubuntu/Dockerfile | |
- name: DockerBuildPushMooseUbuntu | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
tags: helenbrooks/moose-ubuntu:github_workflow_${{ github.run_id }} | |
file: docker/moose-ubuntu/Dockerfile | |
build-args: | | |
base_image_tag=github_workflow_${{ github.run_id }} | |
compile_cores=2 | |
- name: DockerBuildPushAuroraDepsUbuntu | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
tags: helenbrooks/aurora-deps-ubuntu:github_workflow_${{ github.run_id }} | |
file: docker/aurora-deps-ubuntu/Dockerfile | |
build-args: | | |
base_image_tag=github_workflow_${{ github.run_id }} | |
moose_image_tag=github_workflow_${{ github.run_id }} | |
compile_cores=2 | |
- name: DockerBuildPushAuroraUbuntu | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
tags: helenbrooks/aurora-ubuntu:github_workflow_${{ github.run_id }} | |
file: docker/aurora-ubuntu/Dockerfile | |
build-args: | | |
base_image_tag=github_workflow_${{ github.run_id }} | |
compile_cores=2 | |
build-fedora: | |
runs-on: ubuntu-20.04 | |
name: DockerBuildPushFedoraBase | |
steps: | |
# First check out the repository to get the docker file | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Log in to Docker Hub | |
- name: Login | |
uses: docker/login-action@v2 | |
with: | |
username: helenbrooks | |
password: ${{ secrets.DOCKERHUB_SECRET }} | |
- name: BuildPush | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
tags: helenbrooks/aurora-base-fedora:github_workflow_${{ github.run_id }} | |
file: docker/aurora-base-fedora/Dockerfile | |
- name: DockerBuildPushMooseFedora | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
tags: helenbrooks/moose-fedora:github_workflow_${{ github.run_id }} | |
file: docker/moose-fedora/Dockerfile | |
build-args: | | |
base_image_tag=github_workflow_${{ github.run_id }} | |
compile_cores=2 | |
- name: DockerBuildPushAuroraDepsFedora | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
tags: helenbrooks/aurora-deps-fedora:github_workflow_${{ github.run_id }} | |
file: docker/aurora-deps-fedora/Dockerfile | |
build-args: | | |
base_image_tag=github_workflow_${{ github.run_id }} | |
moose_image_tag=github_workflow_${{ github.run_id }} | |
compile_cores=2 | |
- name: DockerBuildPushAuroraFedora | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
tags: helenbrooks/aurora-fedora:github_workflow_${{ github.run_id }} | |
file: docker/aurora-fedora/Dockerfile | |
build-args: | | |
base_image_tag=github_workflow_${{ github.run_id }} | |
compile_cores=2 |