Skip to content

Commit e0e4a29

Browse files
MementoRCclaude
andcommitted
fix: explicit environment specification in status workflow
- Remove PIXI_ENV environment variable approach - Use explicit -e quality flag in all pixi commands - Remove redundant environment activation step - Fix environment targeting in install commands Iteration: 2/10 Job: Quick Status Check Error: Process completed with exit code 1 - environment activation issue 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent e9ea64e commit e0e4a29

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/status.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ jobs:
99
quick-check:
1010
name: Quick Status Check
1111
runs-on: ubuntu-latest
12-
env:
13-
PIXI_ENV: quality # Ensure pixi targets the 'quality' environment
1412

1513
steps:
1614
- name: Checkout code
@@ -29,22 +27,18 @@ jobs:
2927
until [ "$n" -ge 3 ]
3028
do
3129
# Try locked first, then fallback to update if needed
32-
if pixi install; then # PIXI_ENV will make this target 'quality'
30+
if pixi install -e quality; then
3331
echo "✅ Installation successful"
3432
break
3533
elif [ "$n" -eq 2 ]; then
3634
echo "⚠️ Install failed, retrying..."
37-
pixi install && break # PIXI_ENV will make this target 'quality'
35+
pixi install -e quality && break
3836
fi
3937
n=$((n+1))
4038
echo "pixi install failed, retrying ($n/3)..."
4139
sleep 5
4240
done
4341
44-
- name: Activate pixi environment
45-
run: |
46-
eval "$(pixi shell --env-hook bash)"
47-
4842
- name: Install project dependencies
4943
run: |
5044
pixi run -e quality ci-install

0 commit comments

Comments
 (0)