Skip to content

Commit

Permalink
Fixes typo in BASIS docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
holm10 committed Jan 14, 2025
1 parent f5ad906 commit e8b357e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-basis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
run: |
echo $BRANCH_NAME
docker run --rm fusionbillm/basisuedge checkout $BRANCH_NAME 2>&1 | tee build.log
if [[ ! $( tail -n 50 buil.log ) == *"All level 1 tests passed"* ]]; then
if [[ ! $( tail -n 50 build.log ) == *"All level 1 tests passed"* ]]; then
echo "Docker build and/or level 1 tests failed for BASIS build!"
exit 1
fi
if [[ ! $( tail -n 50 buil.log ) == *"All level 2 tests passed"* ]]; then
if [[ ! $( tail -n 50 build.log ) == *"All level 2 tests passed"* ]]; then
echo "Docker build and/or level 2 tests failed for BASIS build!"
exit 1
fi
Expand Down

0 comments on commit e8b357e

Please sign in to comment.