Skip to content

Commit

Permalink
!! DEBUG !!
Browse files Browse the repository at this point in the history
Signed-off-by: Loic Devulder <[email protected]>
  • Loading branch information
ldevulder committed Sep 19, 2023
1 parent 2bdf280 commit 52205ba
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cli-k3s-multi_cluster-rancher_stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
with:
test_description: "CI/Manual - CLI - Multi Cluster - Deployment test with Standard K3s"
cluster_name: cluster-k3s
cluster_number: 10
cluster_number: 2
k8s_version_to_provision: v1.26.7+k3s1
rancher_version: stable/latest
runner_template: elemental-e2e-ci-runner-spot-x86-64-template-n2-highmem-64-v4
#runner_template: elemental-e2e-ci-runner-spot-x86-64-template-n2-highmem-64-v4
test_type: multi
upstream_cluster_version: v1.26.7+k3s1
27 changes: 26 additions & 1 deletion .github/workflows/master-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,31 @@ jobs:
uses: actions/setup-go@v3
with:
go-version-file: tests/go.mod
- name: Cache ISO
# !! DEBUG !!
# - name: Cache ISO
# # NOTE: download the *default* ISO, not the one passed as a parameter
# if: inputs.iso_to_test == ''
# uses: actions/cache@v3
# env:
# cache-name: cache-artifacts
# with:
# path: build/*
# key: build-ci-${{ github.event.pull_request.head.sha || github.sha }}
# # Alternate key, mainly useful for UI test
# restore-keys: |
# build-ci-
- name: Wait for build
uses: fountainhead/[email protected]
id: wait-for-build
with:
token: ${{ secrets.GITHUB_TOKEN }}
checkName: build-all-artifacts
ref: ${{ github.event.pull_request.head.sha || github.sha }}
timeoutSeconds: 1800
- name: Stop the workflow if build has failed
if: steps.wait-for-build.outputs.conclusion == 'failure'
run: exit 1
- name: Restore cache artifacts
# NOTE: download the *default* ISO, not the one passed as a parameter
if: inputs.iso_to_test == ''
uses: actions/cache@v3
Expand All @@ -251,6 +275,7 @@ jobs:
# Alternate key, mainly useful for UI test
restore-keys: |
build-ci-
# !! DEBUG !!
- name: Download specified ISO
if: inputs.iso_to_test != ''
env:
Expand Down

0 comments on commit 52205ba

Please sign in to comment.