Skip to content

Commit 1190109

Browse files
committed
Migrate to fixtures conformance method
1 parent add440f commit 1190109

File tree

72 files changed

+168
-321
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+168
-321
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ env:
1212
WASM_PACKAGES: "['interface', 'program']"
1313
IDL_PACKAGES: "['pinocchio-interface']"
1414
MIRI_PACKAGES: "['pinocchio-program']"
15+
REGRESSION_PACKAGES: "['pinocchio-program']"
1516

1617
jobs:
1718
set_env:
@@ -23,6 +24,7 @@ jobs:
2324
WASM_PACKAGES: ${{ steps.compute.outputs.WASM_PACKAGES }}
2425
IDL_PACKAGES: ${{ steps.compute.outputs.IDL_PACKAGES }}
2526
MIRI_PACKAGES: ${{ steps.compute.outputs.MIRI_PACKAGES }}
27+
REGRESSION_PACKAGES: ${{ steps.compute.outputs.REGRESSION_PACKAGES }}
2628
RUST_TOOLCHAIN_NIGHTLY: ${{ steps.compute.outputs.RUST_TOOLCHAIN_NIGHTLY }}
2729
SOLANA_CLI_VERSION: ${{ steps.compute.outputs.SOLANA_CLI_VERSION }}
2830
steps:
@@ -38,6 +40,7 @@ jobs:
3840
echo "WASM_PACKAGES=${{ env.WASM_PACKAGES }}" >> $GITHUB_OUTPUT
3941
echo "IDL_PACKAGES=${{ env.IDL_PACKAGES }}" >> $GITHUB_OUTPUT
4042
echo "MIRI_PACKAGES=${{ env.MIRI_PACKAGES }}" >> $GITHUB_OUTPUT
43+
echo "REGRESSION_PACKAGES=${{ env.REGRESSION_PACKAGES }}" >> $GITHUB_OUTPUT
4144
echo "RUST_TOOLCHAIN_NIGHTLY=$(make rust-toolchain-nightly)" >> "$GITHUB_OUTPUT"
4245
echo "SOLANA_CLI_VERSION=$(make solana-cli-version)" >> "$GITHUB_OUTPUT"
4346
@@ -49,6 +52,7 @@ jobs:
4952
rust-packages: ${{ needs.set_env.outputs.RUST_PACKAGES }}
5053
wasm-packages: ${{ needs.set_env.outputs.WASM_PACKAGES }}
5154
idl-packages: ${{ needs.set_env.outputs.IDL_PACKAGES }}
55+
regression-packages: ${{ needs.set_env.outputs.REGRESSION_PACKAGES }}
5256
rustfmt-toolchain: ${{ needs.set_env.outputs.RUST_TOOLCHAIN_NIGHTLY }}
5357
clippy-toolchain: ${{ needs.set_env.outputs.RUST_TOOLCHAIN_NIGHTLY }}
5458
solana-cli-version: ${{ needs.set_env.outputs.SOLANA_CLI_VERSION }}

0 commit comments

Comments
 (0)