Skip to content

Commit

Permalink
ci: remove --tty on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
edouard-lopez committed Aug 30, 2023
1 parent 9ef082e commit 8c5cfc4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,19 @@ build-pure-on-nix:

dev-pure-on-nix: STAGE?=nix
dev-pure-on-nix: CMD?=fish
dev-pure-on-nix: TTY?=--tty
dev-pure-on-nix:
echo ${CMD} + ${STAGE}
chmod o=rwx ./tests/fixtures/ # for migration-to-4.0.0.test.fish only
docker run \
--name dev-pure-on-${FISH_VERSION} \
--rm \
--interactive \
--tty \
${TTY} \
--volume=$$(pwd):/tmp/.pure/ \
--workdir /tmp/.pure/ \
pure-${STAGE}-${FISH_VERSION} "${CMD}"
chmod o=r-x ./tests/fixtures/ # for migration-to-4.0.0.test.fish only

test-pure-on-nix: CMD?=fishtape tests/*.test.fish
test-pure-on-nix:
$(MAKE) dev-pure-on-nix CMD="${CMD}"
$(MAKE) dev-pure-on-nix CMD="${CMD}" TTY=

0 comments on commit 8c5cfc4

Please sign in to comment.