Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for latest ngen build error #212

Merged
merged 2 commits into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docker/Dockerfile.ngen
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
################################################################################################################
ARG REPO_URL=https://github.com/NOAA-OWP/ngen.git \
BRANCH=master \
COMMIT=f91e2ea \
COMMIT \
TAG_NAME

################################################################################################################
Expand All @@ -29,6 +29,9 @@ RUN if [ "x$COMMIT" != "x" ]; then \
&& git submodule update --init --depth 1 test/googletest \
&& git submodule update --init --recursive --depth 1

# delete the pybind11 directory and re-clone it with newer version
RUN cd /ngen/ngen/extern && rm -rf pybind11 && git clone https://github.com/pybind/pybind11.git && cd pybind11 && git checkout v2.11.0

# Make an alias for t-route with tag name
FROM awiciroh/t-route:${TAG_NAME} as troute

Expand Down
Loading