tangled
alpha
login
or
join now
nandi.latha.org
/
pixi-skills
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
fix: more verbose build output
nandi
3 weeks ago
aa81d679
f709d561
0/1
build.yml
failed
4s
+10
-11
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
build.yml
+10
-11
.tangled/workflows/build.yml
···
26
26
steps:
27
27
- name: "Show environment"
28
28
command: |
29
29
-
echo "=== Working directory ==="
30
29
pwd
31
31
-
echo "=== Files ==="
32
30
ls -la
33
33
-
echo "=== Recipe ==="
31
31
+
echo "=== Checking recipe ==="
34
32
cat recipe/recipe.yaml
35
33
36
34
- name: "Build conda package"
37
35
command: |
38
38
-
echo "=== Building conda package ==="
36
36
+
set -e
37
37
+
echo "Starting build..."
39
38
rattler-build build --recipe recipe/recipe.yaml --output-dir ./output
40
40
-
echo "=== Build exit code: $? ==="
41
41
-
echo "=== Output directory ==="
42
42
-
ls -laR output/
39
39
+
echo "Build completed, checking output..."
40
40
+
ls -la output/
41
41
+
ls -la output/linux-64/ || ls -la output/*/
42
42
+
echo "Done"
43
43
44
44
- name: "Verify package"
45
45
command: |
46
46
-
echo "=== Finding package ==="
47
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
50
-
echo "ERROR: No package found!"
48
48
+
echo "ERROR: No package found in output/"
49
49
+
ls -laR output/
51
50
exit 1
52
51
fi
53
53
-
echo "Package: $PACKAGE"
52
52
+
echo "Found package: $PACKAGE"
54
53
ls -la "$PACKAGE"