Skip to content

Commit

Permalink
update to ibek 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Sep 29, 2023
1 parent e820b91 commit 65b02a4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ARG REGISTRY=ghcr.io/epics-containers
FROM ${REGISTRY}/epics-base-${TARGET_ARCHITECTURE}-developer:${BASE} AS developer

# install latest ibek while in development - eventually will come from epics-base
RUN pip install ibek==1.3.1
RUN pip install ibek==1.3.2

# the devcontainer mounts the project root to /epics/ioc-adaravis
WORKDIR /epics/ioc-adaravis/ibek-support
Expand Down
10 changes: 6 additions & 4 deletions build
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#!/bin/bash

# pass rtems to build RTEMS on cross-compiler
TARGET_ARCHITECTURE=${1:-linux}
################################################################################
# generic local build script for epics-containers ioc repositories #
################################################################################

# local build script for epics-containers ioc
# pass rtems as first argument to build RTEMS on cross-compiler
TARGET_ARCHITECTURE=${1:-linux}

set -xe

Expand All @@ -17,7 +19,7 @@ ARGS="
"

for target in developer runtime ; do
TAG=${PROJECT}-${TARGET_ARCHITECTURE}-${target}:local
TAG=ghcr.io/epics-containers/${PROJECT}-${TARGET_ARCHITECTURE}-${target}:local
podman buildx build --target ${target} ${ARGS} -t ${TAG} .
done

Expand Down

0 comments on commit 65b02a4

Please sign in to comment.