diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-07-02 17:51:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-02 17:51:22 +0200 |
| commit | 279f785efb15667c266da9ea73d016b5d5f0f403 (patch) | |
| tree | fa9ac0199e26fcbbeae014be9e2daad36f96a593 | |
| parent | fbd19e818f9e046bbeede67b06aca2a04ce39a3c (diff) | |
| parent | ddd04e18109ad5946d03c6b566dc4d10c7959152 (diff) | |
| download | vyos-1x-279f785efb15667c266da9ea73d016b5d5f0f403.tar.gz vyos-1x-279f785efb15667c266da9ea73d016b5d5f0f403.zip | |
Merge pull request #5306 from asklymenko/rolling
T9037: Could not build ISO image for integration tests
| -rw-r--r-- | .github/workflows/package-smoketest.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/package-smoketest.yml b/.github/workflows/package-smoketest.yml index 46ade59e3..e558a4fa7 100644 --- a/.github/workflows/package-smoketest.yml +++ b/.github/workflows/package-smoketest.yml @@ -140,6 +140,15 @@ jobs: token: ${{ needs.set_config.outputs.use_pat == 'true' && secrets.PAT || secrets.GITHUB_TOKEN }} ref: ${{ needs.set_config.outputs.vyos_build_ref }} + - name: Clone vyos-1x source code into the build directory + uses: actions/checkout@v6 + with: + path: build/vyos-1x + repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }} + token: ${{ needs.set_config.outputs.use_pat == 'true' && secrets.PAT || secrets.GITHUB_TOKEN }} + ref: ${{ needs.set_config.outputs.vyos_build_ref }} + persist-credentials: false + - name: Clone vyos-1x source code uses: actions/checkout@v6 with: |
