Skip to content

Commit

Permalink
Merge pull request #741 from serokell/PruStephan/chore-fix-tests-bug
Browse files Browse the repository at this point in the history
[Chore] Fix bug in tests
  • Loading branch information
PruStephan authored Oct 25, 2023
2 parents 1db6b0f + d4c5a1a commit 8f9199d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker/tests/scripts/test-fedora-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -euo pipefail

for version in $(jq -r '.fedora[]' docker/supported_versions.json); do
docker build --build-arg dist="$version" --build-arg repo="Tezos" -t fedora-test -f docker/tests/Dockerfile-fedora-test .
docker run -rm fedora-test
docker run --rm fedora-test
docker build --build-arg dist="$version" --build-arg repo="Tezos-rc" -t fedora-test -f docker/tests/Dockerfile-fedora-test .
docker run -rm fedora-test
docker run --rm fedora-test
done
4 changes: 2 additions & 2 deletions docker/tests/scripts/test-ubuntu-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -euo pipefail

for version in $(jq -r '.ubuntu[]' docker/supported_versions.json); do
docker build --build-arg dist="$version" --build-arg repo="tezos" -t ubuntu-test -f docker/tests/Dockerfile-ubuntu-test .
docker run -rm ubuntu-test
docker run --rm ubuntu-test
docker build --build-arg dist="$version" --build-arg repo="tezos-rc" -t ubuntu-test -f docker/tests/Dockerfile-ubuntu-test .
docker run -rm ubuntu-test
docker run --rm ubuntu-test
done

0 comments on commit 8f9199d

Please sign in to comment.