From d3df43193fa66a6ed294a2161d757497f40e61d9 Mon Sep 17 00:00:00 2001 From: Ben Deane Date: Wed, 11 Oct 2023 16:15:35 -0600 Subject: [PATCH] :arrow_up: :construction_worker: Update workflow from upstream --- .github/workflows/asciidoctor-ghpages.yml | 6 +++--- .github/workflows/unit_tests.yml | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/asciidoctor-ghpages.yml b/.github/workflows/asciidoctor-ghpages.yml index 0016291..9c4a570 100644 --- a/.github/workflows/asciidoctor-ghpages.yml +++ b/.github/workflows/asciidoctor-ghpages.yml @@ -11,7 +11,7 @@ env: jobs: configure: name: Configure Github Pages Publishing - runs-on: intel-ubuntu-22.04 + runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-22.04 outputs: enable_publish: ${{ steps.check.outputs.isfork == 'NO' }} steps: @@ -29,7 +29,7 @@ jobs: build: needs: configure name: Build Documentation - runs-on: intel-ubuntu-22.04 + runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-22.04 steps: - name: Checkout source uses: actions/checkout@v4 @@ -65,7 +65,7 @@ jobs: environment: name: github-pages url: $${{ steps.deployment.outputs.page_url }} - runs-on: intel-ubuntu-22.04 + runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-22.04 steps: - name: Deploy to github pages id: deployment diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 8b4d174..2c55a17 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -21,7 +21,7 @@ concurrency: jobs: build_and_test: - runs-on: intel-ubuntu-22.04 + runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-22.04 strategy: fail-fast: false matrix: @@ -123,7 +123,7 @@ jobs: run: ctest -j $(nproc) -C ${{matrix.build_type}} quality_checks_pass: - runs-on: intel-ubuntu-22.04 + runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-22.04 steps: - uses: actions/checkout@v4 @@ -147,7 +147,7 @@ jobs: run: cmake --build ${{github.workspace}}/build -t quality sanitize: - runs-on: intel-ubuntu-22.04 + runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-22.04 strategy: fail-fast: false matrix: @@ -172,7 +172,7 @@ jobs: run: cmake --build ${{github.workspace}}/build -t unit_tests valgrind: - runs-on: intel-ubuntu-22.04 + runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-22.04 steps: - uses: actions/checkout@v4 @@ -222,7 +222,7 @@ jobs: test $FAILSIZE = "0" merge_ok: - runs-on: intel-ubuntu-22.04 + runs-on: ${{ github.repository_owner == 'intel' && 'intel-' || '' }}ubuntu-22.04 needs: [build_and_test, quality_checks_pass, sanitize, valgrind] if: ${{ always() }} steps: