Skip to content

Commit

Permalink
More tweaks to fix PR GitHub Actions Test jobs for Certify
Browse files Browse the repository at this point in the history
  • Loading branch information
jrnelson90 committed Dec 5, 2023
1 parent cd956e5 commit 7b29e54
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/4_6_2_Core_Unit_Tests_Win.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
build-and-test:
# TODO: Re-enable once we determine the cause of the .NET Framework 4.6.2 tests stalling (test runner doesn't quit when done')
if: ${{ ! always() }}
name: build-and-test-${{ runner.os }}
name: build-and-test-windows
runs-on: windows-latest
steps:
- name: Clone webprofusion/certify
Expand All @@ -31,23 +31,23 @@ jobs:
path: ./libs/anvil

- name: Clone webprofusion/certify-plugins (development branch push)
if: ${{ github.event_name == "push" && contains(github.ref_name, '_dev') }}
if: ${{ github.event_name == 'push' && contains(github.ref_name, '_dev') }}
uses: actions/checkout@master
with:
repository: webprofusion/certify-plugins
ref: refs/heads/development
path: ./certify-plugins

- name: Clone webprofusion/certify-plugins (release branch push)
if: ${{ github.event_name == "push" && contains(github.ref_name, '_rel') }}
if: ${{ github.event_name == 'push' && contains(github.ref_name, '_rel') }}
uses: actions/checkout@master
with:
repository: webprofusion/certify-plugins
ref: refs/heads/release
path: ./certify-plugins

- name: Clone webprofusion/certify-plugins (pull request)
if: ${{ github.event_name == "pull_request" }}
if: ${{ github.event_name == 'pull_request' }}
uses: actions/checkout@master
with:
repository: webprofusion/certify-plugins
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/8_0_Core_Unit_Tests_Linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
jobs:
build-and-test:

name: build-and-test-${{ runner.os }}
name: build-and-test-linux
runs-on: ubuntu-latest
steps:
- name: Clone webprofusion/certify
Expand All @@ -30,23 +30,23 @@ jobs:
path: ./libs/anvil

- name: Clone webprofusion/certify-plugins (development branch push)
if: ${{ github.event_name == "push" && contains(github.ref_name, '_dev') }}
if: ${{ github.event_name == 'push' && contains(github.ref_name, '_dev') }}
uses: actions/checkout@master
with:
repository: webprofusion/certify-plugins
ref: refs/heads/development
path: ./certify-plugins

- name: Clone webprofusion/certify-plugins (release branch push)
if: ${{ github.event_name == "push" && contains(github.ref_name, '_rel') }}
if: ${{ github.event_name == 'push' && contains(github.ref_name, '_rel') }}
uses: actions/checkout@master
with:
repository: webprofusion/certify-plugins
ref: refs/heads/release
path: ./certify-plugins

- name: Clone webprofusion/certify-plugins (pull request)
if: ${{ github.event_name == "pull_request" }}
if: ${{ github.event_name == 'pull_request' }}
uses: actions/checkout@master
with:
repository: webprofusion/certify-plugins
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/8_0_Core_Unit_Tests_Win.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
jobs:
build-and-test:

name: build-and-test-${{ runner.os }}
name: build-and-test-windows
runs-on: windows-latest
steps:
- name: Clone webprofusion/certify
Expand All @@ -30,23 +30,23 @@ jobs:
path: ./libs/anvil

- name: Clone webprofusion/certify-plugins (development branch push)
if: ${{ github.event_name == "push" && contains(github.ref_name, '_dev') }}
if: ${{ github.event_name == 'push' && contains(github.ref_name, '_dev') }}
uses: actions/checkout@master
with:
repository: webprofusion/certify-plugins
ref: refs/heads/development
path: ./certify-plugins

- name: Clone webprofusion/certify-plugins (release branch push)
if: ${{ github.event_name == "push" && contains(github.ref_name, '_rel') }}
if: ${{ github.event_name == 'push' && contains(github.ref_name, '_rel') }}
uses: actions/checkout@master
with:
repository: webprofusion/certify-plugins
ref: refs/heads/release
path: ./certify-plugins

- name: Clone webprofusion/certify-plugins (pull request)
if: ${{ github.event_name == "pull_request" }}
if: ${{ github.event_name == 'pull_request' }}
uses: actions/checkout@master
with:
repository: webprofusion/certify-plugins
Expand Down

0 comments on commit 7b29e54

Please sign in to comment.