Skip to content

Commit

Permalink
fixup! [#641] Add tezos binaries tests
Browse files Browse the repository at this point in the history
  • Loading branch information
PruStephan committed Oct 7, 2023
1 parent 67c16c2 commit bc81ba8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docker/tests/scripts/test-fedora-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# SPDX-FileCopyrightText: 2023 Oxhead Alpha
# SPDX-License-Identifier: LicenseRef-MIT-OA

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 fedora-test
Expand Down
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 @@ -3,11 +3,11 @@
# SPDX-FileCopyrightText: 2023 Oxhead Alpha
# SPDX-License-Identifier: LicenseRef-MIT-OA

set -e
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 fedora-test
docker run ubuntu-test
docker build --build-arg dist="$version" --build-arg repo="tezos-rc" -t ubuntu-test -f docker/tests/Dockerfile-ubuntu-test .
docker run ubuntu-test
done

0 comments on commit bc81ba8

Please sign in to comment.