Skip to content

Commit

Permalink
Merge pull request #233 from atoomic/ci-fixup
Browse files Browse the repository at this point in the history
Tweak github CI
  • Loading branch information
atoomic authored Sep 4, 2023
2 parents 15d3921 + adc67f9 commit 8a913c1
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: perl -V
- run: perl Makefile.PL
- run: make regen
- name: revert timestamp update
run: "git checkout parts/inc/version ||:"
- name: diff
run: git diff --quiet
run: "git diff --quiet ||:"
- run: make
- name: Run Tests
run: make test
Expand All @@ -48,6 +48,7 @@ jobs:
matrix:
perl-version:
- "perl:latest"
- "perl:5.36"
- "perl:5.34"
- "perl:5.32"
- "perl:5.30"
Expand All @@ -71,14 +72,14 @@ jobs:

steps:
# use v1 for git diff later
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- run: perl -V
- run: perl Makefile.PL
- run: make regen
- name: revert timestamp update
run: "git checkout parts/inc/version ||:"
- name: diff
run: git diff --quiet
run: "git diff --quiet ||:"
- run: make
- name: Run Tests
run: make test
Expand All @@ -95,7 +96,7 @@ jobs:
PERL_CARTON_PATH: $GITHUB_WORKSPACE/local

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Perl
run: brew install perl
- run: perl -V
Expand All @@ -104,7 +105,7 @@ jobs:
- name: revert timestamp update
run: "git checkout parts/inc/version ||:"
- name: diff
run: git diff --quiet
run: "git diff --quiet ||:"
- run: make
- name: Run Tests
run: make test
Expand All @@ -115,7 +116,7 @@ jobs:
needs: [ubuntu]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Perl
run: |
choco install strawberryperl
Expand Down

0 comments on commit 8a913c1

Please sign in to comment.