Skip to content

Commit

Permalink
gh-action: add workflow to build test images
Browse files Browse the repository at this point in the history
  • Loading branch information
jsliacan committed Dec 8, 2023
1 parent 9805e90 commit 83df475
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/build-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Build test images
on:
push:
branches:
- "main"
pull_request: {}

env:
IMAGE_NAME_E2E: crc-e2e
IMAGE_NAME_INTEGRATION: crc-integration

jobs:
build-e2e:
runs-on: ubuntu-latest
strategy:
fail-fast: false

steps:
- name: Check out repository code
uses: actions/checkout@v3

- name: Build and archive e2e image
# use github.sha as ID to correlate various workflows triggered by the same event
run: |
CRC_E2E_IMG_VERSION=id-${{ github.sha }} make containerized_e2e
podman save -o ${{ env.IMAGE_NAME_E2E }}.tar quay.io/crcont/${{ env.IMAGE_NAME_E2E}}:id-${{ github.sha }}
- name: Upload e2e image
uses: actions/upload-artifact@v3
with:
name: ${{ env.IMAGE_NAME_E2E }}-id${{ github.sha }}
path: ${{ env.IMAGE_NAME_E2E }}.tar

build-integration:
runs-on: ubuntu-latest
strategy:
fail-fast: false

steps:
- name: Check out repository code
uses: actions/checkout@v3

- name: Build and archive integration image
# use github.sha as ID to correlate various workflows triggered by the same event
run: |
CRC_INTEGRATION_IMG_VERSION=id-${{ github.sha }} make containerized_integration
podman save -o ${{ env.IMAGE_NAME_INTEGRATION }}.tar quay.io/crcont/${{ env.IMAGE_NAME_INTEGRATION }}:id-${{ github.sha }}
- name: Upload integration image
uses: actions/upload-artifact@v3
with:
name: ${{ env.IMAGE_NAME_INTEGRATION }}-id${{ github.sha }}
path: ${{ env.IMAGE_NAME_INTEGRATION }}.tar

0 comments on commit 83df475

Please sign in to comment.