File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,16 @@ services:
2121 context : .
2222 dockerfile : Dockerfile
2323 working_dir : /usr/src/xorca
24- command : >
25- # Add set -euxo pipefail for verbose debugging (exit on error, print commands)
26- # Add ls -laR target/idl to confirm IDL presence before yarn generate
27- sh -c "set -euxo pipefail
28- && echo '--- Contents of target/idl before yarn generate ---'
29- && ls -laR target/idl || echo 'target/idl not found or empty'
30- && echo '--- Running yarn generate ---'
31- && yarn generate"
24+ # Updated command to use YAML list format for robustness
25+ command :
26+ - sh
27+ - -c
28+ - |
29+ set -euxo pipefail
30+ echo '--- Contents of target/idl before yarn generate ---'
31+ ls -laR target/idl || echo 'target/idl not found or empty'
32+ echo '--- Running yarn generate ---'
33+ yarn generate
3234 profiles : [dev, build, publish, test]
3335 depends_on :
3436 build-solana-program :
You can’t perform that action at this time.
0 commit comments