chore: use self hosted update action #39
Workflow file for this run
This file contains hidden or 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
# SPDX-FileCopyrightText: (C) 2025 Intel Corporation | |
# SPDX-License-Identifier: Apache-2.0 | |
--- | |
name: Cluster Tests Integration test CI Pipeline | |
on: | |
pull_request: | |
branches: | |
- main | |
- release-* | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
integration-smoke-test: | |
permissions: | |
contents: read | |
runs-on: ubuntu-24.04-16core-64GB | |
steps: | |
- name: Checkout orch-ci repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
repository: open-edge-platform/orch-ci | |
path: ci | |
ref: "main" | |
token: ${{ secrets.SYS_ORCH_GITHUB }} | |
persist-credentials: false | |
- name: Checkout cluster-tests | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
repository: open-edge-platform/cluster-tests | |
path: cluster-tests | |
ref: ${{ github.head_ref }} # Checkout the branch that triggered the workflow to avoid detached HEAD | |
token: ${{ secrets.SYS_ORCH_GITHUB }} | |
persist-credentials: false | |
- name: Bootstrap CI environment | |
uses: ./ci/.github/actions/bootstrap | |
with: | |
gh_token: ${{ secrets.SYS_ORCH_GITHUB }} | |
- name: Run make test with additional config | |
run: | | |
cd cluster-tests | |
make test |