-
Notifications
You must be signed in to change notification settings - Fork 2
Prep before publishing action #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
c1d37cf
916d784
79bf0e1
55dd0cd
4cbe40d
fbc12ad
201a704
018b228
e65a4da
e8161f5
2aeac78
3759c8d
fcccf1a
1a3bced
8838f51
a21d97f
dd0097a
58d28cf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
name: "Check Workflow" | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
|
||
since-v520: | ||
runs-on: ubuntu-latest | ||
name: 'since v5.20' | ||
outputs: | ||
perl-versions: ${{ steps.action.outputs.perl-versions }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: "uses perl-versions" | ||
id: action | ||
uses: ./ | ||
with: | ||
since-perl: v5.20 | ||
|
||
since-520: | ||
runs-on: ubuntu-latest | ||
name: 'since 5.20' | ||
outputs: | ||
perl-versions: ${{ steps.action.outputs.perl-versions }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: "uses perl-versions" | ||
id: action | ||
uses: ./ | ||
with: | ||
since-perl: "5.20" | ||
|
||
since-536-with-devel: | ||
runs-on: ubuntu-latest | ||
name: 'since 5.36 with devel' | ||
outputs: | ||
perl-versions: ${{ steps.action.outputs.perl-versions }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: "uses perl-versions" | ||
id: action | ||
uses: ./ | ||
with: | ||
since-perl: 5.36 | ||
with-devel: true | ||
|
||
test-matrix: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- since-536-with-devel | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
perl-versions: ${{ fromJson (needs.since-536-with-devel.outputs.perl-versions) }} | ||
steps: | ||
- run: echo "Hello" | ||
|
||
perl-tester: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- since-536-with-devel | ||
name: "Perl ${{ matrix.perl-version }}" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
perl-version: ${{ fromJson (needs.since-536-with-devel.outputs.perl-versions) }} | ||
container: | ||
image: perldocker/perl-tester:${{ matrix.perl-version }} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fyi, perl-versions are used to publish perl-tester docker images, so upcoming v5.40 will be first added here and perl-tester:5.40 will exist later There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeap I was expecting such addition in a few days, but looks like we control the list manually and at the same time we are adding it we should now also add it to the poor man test I ve added there, should be ok I think? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hm, let's see, we can fix issues later
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. definitively good improvements we can add in a short future! Let me know if you are fine with the current state before merging |
||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: perl -V | ||
|
||
check: | ||
needs: | ||
- since-v520 | ||
- since-520 | ||
- since-536-with-devel | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: "Testing since-v520" | ||
run: | | ||
[[ '${{ needs.since-v520.outputs.perl-versions }}' == '["5.20","5.22","5.24","5.26","5.28","5.30","5.32","5.34","5.36","5.38"]' ]] && echo "ok" | ||
|
||
- name: "Testing since-520" | ||
run: | | ||
[[ '${{ needs.since-520.outputs.perl-versions }}' == '["5.20","5.22","5.24","5.26","5.28","5.30","5.32","5.34","5.36","5.38"]' ]] && echo "ok" | ||
|
||
- name: "Testing since-536-with-devel" | ||
run: | | ||
[[ '${{ needs.since-536-with-devel.outputs.perl-versions }}' == '["5.36","5.38","devel"]' ]] && echo "ok" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/node_modules/ |
Uh oh!
There was an error while loading. Please reload this page.