this repo has no description

fix: more verbose build output

+10 -11
+10 -11
.tangled/workflows/build.yml
··· 26 26 steps: 27 27 - name: "Show environment" 28 28 command: | 29 - echo "=== Working directory ===" 30 29 pwd 31 - echo "=== Files ===" 32 30 ls -la 33 - echo "=== Recipe ===" 31 + echo "=== Checking recipe ===" 34 32 cat recipe/recipe.yaml 35 33 36 34 - name: "Build conda package" 37 35 command: | 38 - echo "=== Building conda package ===" 36 + set -e 37 + echo "Starting build..." 39 38 rattler-build build --recipe recipe/recipe.yaml --output-dir ./output 40 - echo "=== Build exit code: $? ===" 41 - echo "=== Output directory ===" 42 - ls -laR output/ 39 + echo "Build completed, checking output..." 40 + ls -la output/ 41 + ls -la output/linux-64/ || ls -la output/*/ 42 + echo "Done" 43 43 44 44 - name: "Verify package" 45 45 command: | 46 - echo "=== Finding package ===" 47 - find output -name "*.conda" -type f 48 46 PACKAGE=$(find output -name "*.conda" -type f | head -1) 49 47 if [ -z "$PACKAGE" ]; then 50 - echo "ERROR: No package found!" 48 + echo "ERROR: No package found in output/" 49 + ls -laR output/ 51 50 exit 1 52 51 fi 53 - echo "Package: $PACKAGE" 52 + echo "Found package: $PACKAGE" 54 53 ls -la "$PACKAGE"