Skip to content

Commit

Permalink
fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gerblesh committed Nov 24, 2024
1 parent 44b4351 commit 40a4f0c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 27 deletions.
26 changes: 3 additions & 23 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,13 @@ jobs:
strategy:
fail-fast: false
matrix:
major_version: [39, 40, 41]
major_version: [40, 41]
include:
- major_version: 39
- major_version: 40
is_latest_version: false
is_stable_version: true
- major_version: 40
is_latest_version: true
is_stable_version: false
- major_version: 41
is_latest_version: false
is_latest_version: true
is_stable_version: false
steps:
# Checkout push-to-registry action GitHub repository
Expand Down Expand Up @@ -78,29 +75,12 @@ jobs:
done
echo "alias_tags=${alias_tags[*]}" >> $GITHUB_OUTPUT
# Build image using Buildah action
# - name: Build Image
# id: build_image
# uses: redhat-actions/buildah-build@v2
# with:
# containerfiles: |
# ./Containerfile
# image: ${{ env.IMAGE_NAME }}
# tags: |
# ${{ steps.generate-tags.outputs.alias_tags }}
# build-args: |
# FEDORA_MAJOR_VERSION=${{ matrix.major_version }}
# oci: true

- name: Build and Test Image
id: build_image
env:
FEDORA_MAJOR_VERSION: ${{ matrix.major_version }}
run: |
just container-build
with:
containerfiles: |
./Containerfile
- name: Test Image
id: test_image
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,8 @@ jobs:
strategy:
fail-fast: false
matrix:
major_version: [39, 40, 41]
major_version: [40, 41]
include:
- major_version: 39
is_latest_version: false
is_stable_version: true
- major_version: 40
is_latest_version: true
is_stable_version: false
Expand Down

0 comments on commit 40a4f0c

Please sign in to comment.