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

Feature #2669 proj METbaseimage v3.0 #2675

Merged
merged 16 commits into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
af1f9e5
Per #2669, add Proj settings to configure.ac and run bootstrap to upd…
JohnHalleyGotway Aug 23, 2023
d0435ef
Per #2669, add info about to the installation and environment files.…
JohnHalleyGotway Aug 24, 2023
1defd4e
Per #2669, update Makefile.am and Makefile.in to link to -lproj when …
JohnHalleyGotway Aug 24, 2023
c5ddf54
Per #2669, update development environments and compilation script to …
JohnHalleyGotway Aug 24, 2023
4a6c057
Per #2669, compile using the MET base image v2.1_beta4 to test whethe…
JohnHalleyGotway Aug 28, 2023
b1b2687
Per #2669, update the METbaseimage tag from v2.0_debian10 to v2.1_bet…
JohnHalleyGotway Aug 28, 2023
fff7c7c
Per #2669, I manually pushed the dtcenter/met-base:v2.1 image and am …
JohnHalleyGotway Aug 29, 2023
7fc6018
Per #2669, update the COMPILER setting to gnu_12.2.0 to be consistent…
JohnHalleyGotway Aug 30, 2023
9b2b57d
Per #2669, update HDF configuration command to get it to compile for …
JohnHalleyGotway Aug 31, 2023
4353056
Per #2669, update Dockerfile to test compiling with Debian 12 METbase…
JohnHalleyGotway Aug 31, 2023
beb9031
Per #2669, test the compilation with the v2.1_debian12 met-base image
JohnHalleyGotway Sep 1, 2023
657a2dc
Per #2669, updating Dockerfiles to test using base image v2.1, tagged…
JohnHalleyGotway Sep 1, 2023
e0af36f
Per #2669, seems to need to link to -ltirpc whenever we link to the -…
JohnHalleyGotway Sep 1, 2023
bbefa31
Per #2669, make logic, indentation, and spacing consistent throughout…
JohnHalleyGotway Sep 5, 2023
e7b90e8
Per #2669, update the met-base version number from v2.1 to v3.0 after…
JohnHalleyGotway Sep 6, 2023
61a9491
Per merging with develop
JohnHalleyGotway Sep 6, 2023
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
2 changes: 1 addition & 1 deletion .github/jobs/set_job_controls.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ run_unit_tests=false
run_diff=false
run_update_truth=false
met_base_repo=met-base
met_base_tag=v2.1
met_base_tag=v3.0
input_data_version=develop
truth_data_version=develop

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_docker_and_trigger_metplus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
env:
SOURCE_BRANCH: ${{ steps.get_branch_name.outputs.branch_name }}-lite
MET_BASE_REPO: met-base
MET_BASE_TAG: v2.1
MET_BASE_TAG: v3.0

- name: Push Docker Image
run: .github/jobs/push_docker_image.sh
Expand Down
2 changes: 1 addition & 1 deletion internal/scripts/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG MET_BASE_REPO=met-base
ARG MET_BASE_TAG=v2.1
ARG MET_BASE_TAG=v3.0

FROM dtcenter/${MET_BASE_REPO}:${MET_BASE_TAG}
MAINTAINER John Halley Gotway <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion internal/scripts/docker/Dockerfile.copy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG MET_BASE_REPO=met-base-unit-test
ARG MET_BASE_TAG=v2.1
ARG MET_BASE_TAG=v3.0

FROM dtcenter/${MET_BASE_REPO}:${MET_BASE_TAG}
MAINTAINER John Halley Gotway <[email protected]>
Expand Down
Loading