Skip to content
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

Test artifact v4 switch #67

Merged
merged 2 commits into from
Nov 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:
jobs:
full:
if: ${{ inputs.single_job == '' || inputs.single_job == 'full' }}
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@v7
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@artifact-deprecation
secrets: inherit
with:
artifact_prefix: full_
Expand Down Expand Up @@ -134,11 +134,11 @@ jobs:

minimal:
if: ${{ inputs.single_job == '' || inputs.single_job == 'minimal' }}
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@v7
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@artifact-deprecation

no_test_scripts:
if: ${{ inputs.single_job == '' || inputs.single_job == 'no_test_scripts' }}
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@v7
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@artifact-deprecation
secrets: inherit
with:
artifact_prefix: no_test_scripts_
Expand All @@ -165,7 +165,7 @@ jobs:

default_tests:
if: ${{ inputs.single_job == '' || inputs.single_job == 'default_tests' }}
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@v7
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@artifact-deprecation
secrets: inherit
with:
artifact_prefix: default_tests_
Expand All @@ -186,7 +186,7 @@ jobs:

default_tests_with_upgrades:
if: ${{ inputs.single_job == '' || inputs.single_job == 'default_tests_with_upgrades' }}
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@v7
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@artifact-deprecation
secrets: inherit
with:
artifact_prefix: default_tests_with_upgrades_
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:

no_tests:
if: ${{ inputs.single_job == '' || inputs.single_job == 'no_tests' }}
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@v7
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@artifact-deprecation
secrets: inherit
with:
artifact_prefix: no_tests_
Expand All @@ -271,7 +271,7 @@ jobs:

no_docker:
if: ${{ inputs.single_job == '' || inputs.single_job == 'no_docker' }}
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@v7
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@artifact-deprecation
with:
artifact_prefix: no_docker_
cross_build_args: --no-default-features
Expand All @@ -294,7 +294,7 @@ jobs:

only_docker:
if: ${{ inputs.single_job == '' || inputs.single_job == 'only_docker' }}
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@v7
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@artifact-deprecation
secrets: inherit
with:
artifact_prefix: only_docker_
Expand Down Expand Up @@ -324,7 +324,7 @@ jobs:

docker_no_secrets:
if: ${{ inputs.single_job == '' || inputs.single_job == 'docker_no_secrets' }}
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@v7
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@artifact-deprecation
with:
artifact_prefix: docker_no_secrets_

Expand All @@ -337,7 +337,7 @@ jobs:

no_cross:
if: ${{ inputs.single_job == '' || inputs.single_job == 'no_cross' }}
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@v7
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@artifact-deprecation
secrets: inherit
with:
artifact_prefix: no_cross_
Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:

test_with_alt_pkg:
if: ${{ inputs.single_job == '' || inputs.single_job == 'test_with_alt_pkg' }}
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@v7
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@artifact-deprecation
secrets: inherit
with:
artifact_prefix: test_with_alt_pkg
Expand All @@ -408,7 +408,7 @@ jobs:

test_with_alt_cargo_toml:
if: ${{ inputs.single_job == '' || inputs.single_job == 'test_with_alt_cargo_toml' }}
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@v7
uses: NLnetLabs/ploutos/.github/workflows/pkg-rust.yml@artifact-deprecation
secrets: inherit
with:
artifact_prefix: test_with_alt_cargo_toml
Expand Down
Loading