Update Shipyard to v0.15.5 #4757
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: End to End Full | |
on: | |
pull_request: | |
types: [labeled, opened, synchronize, reopened] | |
permissions: {} | |
jobs: | |
e2e: | |
name: E2E | |
if: contains(github.event.pull_request.labels.*.name, 'ready-to-test') && github.event.pull_request.state == 'open' | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
globalnet: ['', 'globalnet'] | |
lighthouse: ['', 'lighthouse'] | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: Run E2E deployment and tests | |
uses: submariner-io/shipyard/gh-actions/[email protected] | |
with: | |
using: ${{ matrix.globalnet }} ${{ matrix.lighthouse }} | |
- name: Post mortem | |
if: failure() | |
uses: submariner-io/shipyard/gh-actions/[email protected] |