Skip to content

Commit

Permalink
hybig regression tests. (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
flamingbear committed Jun 5, 2023
1 parent db5e2fe commit d210ce5
Show file tree
Hide file tree
Showing 20 changed files with 568 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-all-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
-
image: "hoss"
notebook: "HOSS_Regression.ipynb"
-
image: "hybig"
notebook: "HyBIG_Regression.ipynb"
-
image: "n2z"
notebook: "N2Z_Regression.ipynb"
Expand Down
2 changes: 1 addition & 1 deletion script/test-in-bamboo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ echo "harmony host url: ${harmony_host_url}"
## e.g. if REGRESSION_TESTS_N2Z_IMAGE environment was set, the value would be used instead of the default.

image_names=()
all_tests=(harmony harmony-regression hoss hga n2z swath-projector trajectory-subsetter variable-subsetter regridder)
all_tests=(harmony harmony-regression hoss hga n2z swath-projector trajectory-subsetter variable-subsetter regridder hybig)
for image in "${all_tests[@]}"; do
image_names+=($(image_name "$image"))
done
Expand Down
5 changes: 4 additions & 1 deletion test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ hga-image: Dockerfile hga/environment.yaml
hoss-image: Dockerfile hoss/environment.yaml
docker build -t ghcr.io/nasa/regression-tests-hoss:latest -f ./Dockerfile --build-arg notebook=HOSS_Regression.ipynb --build-arg sub_dir=hoss .

hybig-image: Dockerfile hybig/environment.yaml
docker build -t ghcr.io/nasa/regression-tests-hybig:latest -f ./Dockerfile --build-arg notebook=HyBIG_Regression.ipynb --build-arg sub_dir=hybig .

n2z-image: Dockerfile n2z/environment.yaml
docker build -t ghcr.io/nasa/regression-tests-n2z:latest -f ./Dockerfile --build-arg notebook=N2Z_Regression.ipynb --build-arg sub_dir=n2z .

Expand All @@ -25,4 +28,4 @@ trajectory-subsetter-image: Dockerfile trajectory-subsetter/environment.yaml
variable-subsetter-image: Dockerfile variable-subsetter/environment.yaml
docker build -t ghcr.io/nasa/regression-tests-variable-subsetter:latest -f ./Dockerfile --build-arg notebook=VariableSubsetter_Regression.ipynb --build-arg sub_dir=variable-subsetter .

images: harmony-image harmony-regression-image hga-image hoss-image n2z-image regridder-image swath-projector-image trajectory-subsetter-image variable-subsetter-image
images: harmony-image harmony-regression-image hga-image hoss-image hybig-image n2z-image regridder-image swath-projector-image trajectory-subsetter-image variable-subsetter-image
Loading

0 comments on commit d210ce5

Please sign in to comment.