Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/e2e-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.

name: E2E Matrix Tests (bootstrap)
name: E2E Matrix Tests (nested clusters)

on:
workflow_dispatch:
schedule:
- cron: "45 6 * * *"
- cron: "45 4 * * *"

concurrency:
group: "${{ github.workflow }}-${{ github.event.number || github.ref }}"
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
deckhouse_channel: alpha
default_user: cloud
go_version: "1.24.6"
e2e_timeout: "3h"
e2e_timeout: "3.5h"
secrets:
DEV_REGISTRY_DOCKER_CFG: ${{ secrets.DEV_REGISTRY_DOCKER_CFG }}
VIRT_E2E_NIGHTLY_SA_TOKEN: ${{ secrets.VIRT_E2E_NIGHTLY_SA_TOKEN }}
Expand All @@ -81,7 +81,7 @@ jobs:
deckhouse_channel: alpha
default_user: cloud
go_version: "1.24.6"
e2e_timeout: "3h"
e2e_timeout: "3.5h"
secrets:
DEV_REGISTRY_DOCKER_CFG: ${{ secrets.DEV_REGISTRY_DOCKER_CFG }}
VIRT_E2E_NIGHTLY_SA_TOKEN: ${{ secrets.VIRT_E2E_NIGHTLY_SA_TOKEN }}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/e2e-reusable-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -379,32 +379,32 @@ jobs:
uses: actions/upload-artifact@v4
if: always()
with:
name: generated-files-${{ inputs.storage_type }}
name: ${{ inputs.storage_type }}-generated-files
path: |
${{ env.SETUP_CLUSTER_TYPE_PATH }}/tmp
${{ env.SETUP_CLUSTER_TYPE_PATH }}/values.yaml
overwrite: true
include-hidden-files: true
retention-days: 1
retention-days: 3

- name: Upload ssh config
uses: actions/upload-artifact@v4
if: always()
with:
name: generated-files-ssh-${{ inputs.storage_type }}
name: ${{ inputs.storage_type }}-generated-files-ssh
path: ${{ env.SETUP_CLUSTER_TYPE_PATH }}/tmp/ssh
overwrite: true
include-hidden-files: true
retention-days: 1
retention-days: 3

- name: Upload kubeconfig
uses: actions/upload-artifact@v4
with:
name: generated-files-kubeconfig-${{ inputs.storage_type }}
name: ${{ inputs.storage_type }}-generated-files-kubeconfig
path: ${{ env.SETUP_CLUSTER_TYPE_PATH }}/kube-config
overwrite: true
include-hidden-files: true
retention-days: 1
retention-days: 3

configure-storage:
name: Configure storage (${{ inputs.storage_type }})
Expand Down Expand Up @@ -1223,13 +1223,13 @@ jobs:
test/e2e/e2e_summary_*.xml
test/e2e/*junit*.xml
if-no-files-found: ignore
retention-days: 1
retention-days: 3

- name: Upload resources from failed tests
uses: actions/upload-artifact@v4
if: always() && steps.e2e-report.outcome == 'failure'
with:
name: resources_from_failed_tests
name: resources_from_failed_tests-${{ inputs.storage_type }}
path: ${{ runner.temp }}/e2e_failed__*
if-no-files-found: ignore
retention-days: 3
Expand Down Expand Up @@ -1392,7 +1392,7 @@ jobs:
with:
name: e2e-report-${{ inputs.storage_type }}-${{ github.run_id }}
path: ${{ steps.determine-stage.outputs.report_file }}
retention-days: 1
retention-days: 3

- name: Set artifact name output
id: set-artifact-name
Expand Down
Loading