Skip to content

Commit

Permalink
remove incorrect option to ec dev build
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Oct 26, 2023
1 parent b861d51 commit 16a9843
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
export EC_TAG="--tag ${TAG:-latest}"
export EC_PLATFORM="--platform ${PLATFORM:-linux/amd64}"
export EC_CACHE="${CACHE:-/tmp/ec-cache}"
export EC_DEBUG=true
if [[ "${PUSH}" == 'true' ]] ; then EC_PUSH='--push' ; fi

THIS=$(dirname ${0})
Expand All @@ -35,10 +34,10 @@ export EC_CARGS="
# ec dev build --arch rtems ... for RTEMS cross compile

# build runtime and developer images
ec dev build --buildx ${EC_TAG} ${EC_PLATFORM} ${EC_PUSH} ${EC_CARGS}
ec -v dev build ${EC_TAG} ${EC_PLATFORM} ${EC_PUSH} ${EC_CARGS}

# extract the ioc schema from the runtime image
ec dev launch-local ${EC_TAG} --execute \
ec -v dev launch-local ${EC_TAG} --execute \
'ibek ioc generate-schema /epics/links/ibek/*.ibek.support.yaml' > ibek.ioc.schema.json

# run acceptance tests
Expand Down

0 comments on commit 16a9843

Please sign in to comment.