Skip to content

Commit

Permalink
ci: disable pix-ctl-full develop test
Browse files Browse the repository at this point in the history
  • Loading branch information
klarkc committed May 13, 2024
1 parent f77a6e2 commit 8d6e51f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ set -ex

develop () {
nix develop -c "echo" --show-trace --print-build-logs --verbose

}

check () {
Expand Down Expand Up @@ -44,6 +43,12 @@ else
nix flake init -t "${SOURCE_DIR}#${TMPL}"
# test the target
check
develop

if [ "$TMPL" != "pix-ctl-full" ]; then
# FIXME slow CI on pix-ctl-full develop
echo "WARN: skipping slow develop on pix-ctl-full"
else
develop
fi
)
fi

0 comments on commit 8d6e51f

Please sign in to comment.