Skip to content

Commit

Permalink
DO-NOT-MERGE: test fedora
Browse files Browse the repository at this point in the history
Signed-off-by: Wainer dos Santos Moschetta <[email protected]>
  • Loading branch information
wainersm committed Jul 31, 2024
1 parent 53db1d8 commit 76469b5
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/e2e_run_all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,7 @@ jobs:
# Run libvirt e2e tests if pull request labeled 'test_e2e_libvirt'
libvirt:
name: libvirt
if: |
github.event_name == 'schedule' ||
github.event_name == 'workflow_dispatch' ||
contains(github.event.pull_request.labels.*.name, 'test_e2e_libvirt')
if: false
needs: [podvm, image, prep_install]
strategy:
fail-fast: false
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/podvm_binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- amd64
- s390x
include:
- os: ubuntu
- os: fedora
arch: amd64
steps:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/test_docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: test docker

on:
workflow_dispatch:

jobs:
e2e:
uses: ./.github/workflows/e2e_docker.yaml
with:
podvm_image: ghcr.io/wainersm/cc-cloud-api-adaptor/podvm-docker-image
caa_image: ghcr.io/confidential-containers/cloud-api-adaptor
secrets: inherit
38 changes: 38 additions & 0 deletions .github/workflows/test_fedora.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Copyright Confidential Containers Contributors
# SPDX-License-Identifier: Apache-2.0
#
# Build and push the pod VM images.
---
name: test fedora
on:
workflow_dispatch:

jobs:
podvm_builder:
uses: ./.github/workflows/podvm_builder.yaml
with:
registry: "ghcr.io/wainersm"
git_ref: ${{ github.sha }}
# image_tag: ${{ github.sha }}
image_tag: latest
secrets: inherit

podvm_binaries:
needs: [podvm_builder]
uses: ./.github/workflows/podvm_binaries.yaml
with:
registry: "ghcr.io/wainersm"
git_ref: ${{ github.sha }}
# image_tag: ${{ github.sha }}
image_tag: latest
secrets: inherit

podvm:
needs: [podvm_binaries]
uses: ./.github/workflows/podvm.yaml
with:
registry: "ghcr.io/wainersm"
git_ref: ${{ github.sha }}
# image_tag: ${{ github.sha }}
image_tag: latest
secrets: inherit

0 comments on commit 76469b5

Please sign in to comment.