diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index a8736d4..36f3293 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -24,11 +24,11 @@ jobs: matrix: os: ['macos-12', 'macos-13', 'macos-14'] version: ['2.9.3'] - prefix: ['/opt/local'] + prefix: ['local'] include: - os: 'macos-14' version: '2.9.3' - prefix: '/opt/package' + prefix: 'package' runs-on: '${{ matrix.os }}' name: 'Install MacPorts' needs: 'run-testsuite' @@ -37,7 +37,7 @@ jobs: - uses: ./ id: 'macports' with: - parameters: 'testsuite/run-testsuite-on-${{ matrix.os }}.yaml' + parameters: 'testsuite/run-testsuite-on-${{ matrix.os }}-${{ matrix.prefix }}.yaml' - name: 'Validate installed MacPorts version' run: >- test "$(port version)" = 'Version: ${{ matrix.version }}' diff --git a/testsuite/run-testsuite-on-macos-12.yaml b/testsuite/run-testsuite-on-macos-12-local.yaml similarity index 100% rename from testsuite/run-testsuite-on-macos-12.yaml rename to testsuite/run-testsuite-on-macos-12-local.yaml diff --git a/testsuite/run-testsuite-on-macos-13.yaml b/testsuite/run-testsuite-on-macos-13-local.yaml similarity index 100% rename from testsuite/run-testsuite-on-macos-13.yaml rename to testsuite/run-testsuite-on-macos-13-local.yaml diff --git a/testsuite/run-testsuite-on-macos-14.yaml b/testsuite/run-testsuite-on-macos-14-local.yaml similarity index 100% rename from testsuite/run-testsuite-on-macos-14.yaml rename to testsuite/run-testsuite-on-macos-14-local.yaml