We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8585cc commit 783bda8Copy full SHA for 783bda8
1 file changed
.github/workflows/test.yml
@@ -58,10 +58,11 @@ jobs:
58
cd program && cargo-build-sbf
59
- name: Build test hook programs
60
run: |
61
- cd tests/test-hook-program && cargo-build-sbf --features allow
62
- cp target/deploy/test_hook_program.so target/deploy/test_hook_allow.so
63
- cd tests/test-hook-program && cargo-build-sbf --features deny
64
- cp target/deploy/test_hook_program.so target/deploy/test_hook_deny.so
+ cd tests/test-hook-program
+ cargo-build-sbf --features allow
+ cp ../../target/deploy/test_hook_program.so ../../target/deploy/test_hook_allow.so
+ cargo-build-sbf --features deny
65
+ cp ../../target/deploy/test_hook_program.so ../../target/deploy/test_hook_deny.so
66
- name: Run integration tests
67
68
mkdir -p .cus
0 commit comments