Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make hw CI job work #304

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
12 changes: 7 additions & 5 deletions .github/workflows/ci-hw.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: CI
name: CI-HW

concurrency:
group: hwci-${{ github.head_ref || github.run_id }}
group: ci-hw-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
Frostman marked this conversation as resolved.
Show resolved Hide resolved

on:
pull_request:
workflow_dispatch:
inputs:
debug_enabled:
Expand Down Expand Up @@ -53,10 +54,11 @@ jobs:
- name: hhfab init and vlab up
env:
HHFAB_REG_REPO: 127.0.0.1:30000
HHFAB_CONTROL_NODE_MGMT_LINK: pci@0000:01:00.3
run: |
bin/hhfab init -v --dev -m ${{ matrix.fabricmode }} --include-onie=${{ matrix.includeonie }}
bin/hhfab vlab gen -v
bin/hhfab vlab up -v --ready setup-vpcs --ready test-connectivity --ready exit --mode=${{ matrix.buildmode }}
wget -O wiring.yaml https://gist.githubusercontent.com/Frostman/993c0bb21b5547a08a459f51d1ef65b7/raw/b07f95abd328ede74e832134a17bd4972c0b11ac/env-ci-1.wiring.yaml
bin/hhfab init -v --dev -m ${{ matrix.fabricmode }} --include-onie=${{ matrix.includeonie }} -w wiring.yaml
bin/hhfab vlab up -v --ready switch-reinstall --ready setup-vpcs --ready test-connectivity --ready exit --mode=${{ matrix.buildmode }}

- name: Dump local registry logs
if: ${{ always() }}
Expand Down
Loading