Skip to content

Commit

Permalink
Merge pull request #76 from ajolma/issue_75_CI_updates
Browse files Browse the repository at this point in the history
CI updates
  • Loading branch information
shawnlaffan committed Jun 11, 2024
2 parents c2e9a63 + eff9967 commit 447cd34
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/linux_bin_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: shogo82148/actions-setup-perl@v1
with:
perl-version: '5.32'
perl-version: '5.38'

- name: Locale check
run: |
Expand Down Expand Up @@ -54,4 +54,5 @@ jobs:
- name: Build
run: |
perl Makefile.PL
cpanm --notest --installdeps .
make test
4 changes: 2 additions & 2 deletions .github/workflows/linux_share_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: shogo82148/actions-setup-perl@v1
with:
perl-version: '5.32'
perl-version: '5.38'

- name: cmake for geos
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linux_sys_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: shogo82148/actions-setup-perl@v1
with:
perl-version: '5.32'
perl-version: '5.38'

- name: system libs
run: |
Expand All @@ -43,7 +43,7 @@ jobs:
ls -l perlversion.txt
- name: Cache CPAN modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/perl5
key: ${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: macOS-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Perl
run: |
Expand All @@ -47,7 +47,7 @@ jobs:
ls -l perlversion.txt
- name: Cache CPAN modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/perl5
key: ${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos_share_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: macOS-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Perl
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Perl
run: |
Expand All @@ -38,15 +38,15 @@ jobs:
dir perlversion.txt
- name: Cache CPAN modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: c:\cx
key: ${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }}
restore-keys: |
${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }}
- name: Cache Alien downloads
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: C:\Users\runneradmin\.alienbuild
key: ${{ runner.os }}-build-${{ hashFiles('aliencache.txt') }}
Expand Down

0 comments on commit 447cd34

Please sign in to comment.