Skip to content

Commit

Permalink
fix python-source docker build error
Browse files Browse the repository at this point in the history
  • Loading branch information
RayPlante committed Jun 1, 2024
1 parent 3d8f358 commit 02ed8f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
OAR_DOCKERHUB_CRED: ${{ secrets.OAR_DOCKERHUB_CRED }}
run: |
bash scripts/dhsetup.sh
cd docker && bash ./dockbuild.sh python
cd docker && bash ./dockbuild.sh pytest
- name: Run Unit Tests via Docker
run: cd docker && ./testall -D python
Expand Down
4 changes: 2 additions & 2 deletions docker/dockbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ setup_build

log_intro # record start of build into log

$codedir/oar-metadata/docker/dockbuild.sh $BUILD_IMAGES

if { echo " $BUILD_IMAGES " | grep -qs " pdrtest "; }; then
$codedir/oar-metadata/docker/dockbuild.sh

echo '+' docker build $BUILD_OPTS -t $PACKAGE_NAME/pdrtest pdrtest | logit
docker build $BUILD_OPTS -t $PACKAGE_NAME/pdrtest pdrtest 2>&1 | logit
fi
Expand Down

0 comments on commit 02ed8f5

Please sign in to comment.