Skip to content

Commit

Permalink
Switch to 5.30.2 in more spots
Browse files Browse the repository at this point in the history
Hopefully this is all of them.
  • Loading branch information
autarch committed Apr 20, 2020
1 parent b1c4154 commit 337560e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions templates/deploy/install-perl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ steps:
- task: Cache@2
displayName: Define perl install
inputs:
key: '"v1" | "perl" | "5.30.1" | "with_test_prereqs=${{ parameters.with_test_prereqs }}" | ./deploy/cpanfile'
path: ${{ parameters.perlbrew_root }}/perls/perl-5.30.1
key: '"v1" | "perl" | "5.30.2" | "with_test_prereqs=${{ parameters.with_test_prereqs }}" | ./deploy/cpanfile'
path: ${{ parameters.perlbrew_root }}/perls/perl-5.30.2
- bash: |
set -e
set -x
if [ ! -d "${{ parameters.perlbrew_root }}/perls/perl-5.30.1" ]; then
"${{ parameters.perlbrew_root }}/bin/perlbrew" install --verbose --notest --noman -j $(nproc) 5.30.1
if [ ! -d "${{ parameters.perlbrew_root }}/perls/perl-5.30.2" ]; then
"${{ parameters.perlbrew_root }}/bin/perlbrew" install --verbose --notest --noman -j $(nproc) 5.30.2
fi
displayName: Perlbrew install Perl 5.30.1
displayName: Perlbrew install Perl 5.30.2
- template: ../shared/install-cpm.yml
- bash: |
set -e
Expand All @@ -26,7 +26,7 @@ steps:
test_flag="--without-test"
fi
"${{ parameters.perlbrew_root }}/bin/perlbrew" exec --with 5.30.1 \
"${{ parameters.perlbrew_root }}/bin/perlbrew" exec --with 5.30.2 \
"$(Pipeline.Workspace)/bin/cpm" install \
--global \
--show-build-log-on-failure \
Expand Down
2 changes: 1 addition & 1 deletion templates/helpers/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ stages:
dependsOn: SetImageVersion
variables:
image_version: $[ dependencies.SetImageVersion.outputs['ImageVersionProducer.image_version'] ]
container: houseabsolute/ci-perl-helpers-ubuntu:5.30.1-$(image_version)
container: houseabsolute/ci-perl-helpers-ubuntu:5.30.2-$(image_version)
steps:
- bash: /usr/local/ci-perl-helpers-tools/bin/with-perl tools-perl show-env.pl
displayName: Show environment
Expand Down

0 comments on commit 337560e

Please sign in to comment.