Skip to content

Commit

Permalink
Added rules-as-code workflow test job
Browse files Browse the repository at this point in the history
Migrated deploy job into rules-as-code workflow and only deploy if the test job is successful
  • Loading branch information
MarkCalvert committed Feb 2, 2024
1 parent 19312f6 commit ec18088
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 43 deletions.
39 changes: 1 addition & 38 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,43 +3,6 @@ name: Deploy images
on:
- push

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}/rules-as-code

jobs:
delploy:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker image
id: meta_openfisca
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./images/rules-as-code
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta_openfisca.outputs.tags }}
55 changes: 50 additions & 5 deletions .github/workflows/rules-as-code.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,60 @@
name: Rules As Code build
on:
- workflow_call
- push

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}/rules-as-code

jobs:
test:
name: Test the docker images
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4

- name: Build the Docker image
run: docker build -f images/rules-as-code/Dockerfile -t ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} images/rules-as-code

- name: Run OpenFisca tests
run: |
docker run --rm -d --name rules-as-code ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
docker exec rules-as-code sh -c 'openfisca test --country-package openfisca_rules openfisca-rules/openfisca_rules/tests'
docker stop rules-as-code
deploy:
name: Build the docker images
needs: test
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker image
id: meta_openfisca
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./images/rules-as-code
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta_openfisca.outputs.tags }}

0 comments on commit ec18088

Please sign in to comment.