Skip to content

Commit

Permalink
Disable analyst build in ci_push.yml. Closes #138. (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
trey0 authored Feb 9, 2024
1 parent 93d678f commit 93ca2ed
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ jobs:
--build-arg REMOTE=ghcr.io/nasa
-t ghcr.io/${{ github.repository_owner }}/isaac:msgs-ubuntu20.04

# Temp disabling the analyst build because it has a new version conflict issue. We should
# re-enable once that issue is solved.
# Temp disabling the analyst build because it has a new version conflict issue. Re-enable once
# #136 is fixed.
#- name: Build analyst image isaac/isaac:msgs-ubuntu20.04
# run: docker build isaac -f isaac/scripts/docker/analyst.Dockerfile
# --build-arg REMOTE=ghcr.io/nasa
Expand Down
14 changes: 9 additions & 5 deletions .github/workflows/ci_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,13 @@ jobs:
--build-arg REMOTE=ghcr.io/nasa
-t ghcr.io/${{ github.repository_owner }}/isaac:msgs-ubuntu20.04

- name: Build analyst image isaac/isaac:msgs-ubuntu20.04
run: docker build isaac -f isaac/scripts/docker/analyst.Dockerfile
--build-arg REMOTE=ghcr.io/nasa
-t ghcr.io/${{ github.repository_owner }}/isaac_analyst_notebook:latest
# Temp disabling the analyst build because it has a version conflict issue. Re-enable once
# #136 is fixed.
# *** Remember to uncomment the push below, as well!
#- name: Build analyst image isaac/isaac:msgs-ubuntu20.04
# run: docker build isaac -f isaac/scripts/docker/analyst.Dockerfile
# --build-arg REMOTE=ghcr.io/nasa
# -t ghcr.io/${{ github.repository_owner }}/isaac_analyst_notebook:latest


- name: Log in to registry
Expand All @@ -72,4 +75,5 @@ jobs:
if [ "${{ github.repository_owner }}" = "nasa" ]; then docker push ghcr.io/${{ github.repository_owner }}/isaac:latest-ubuntu20.04; fi;
if [ "${{ github.repository_owner }}" = "nasa" ]; then docker push ghcr.io/${{ github.repository_owner }}/isaac:astrobee-msgs-ubuntu20.04; fi;
if [ "${{ github.repository_owner }}" = "nasa" ]; then docker push ghcr.io/${{ github.repository_owner }}/isaac:msgs-ubuntu20.04; fi;
if [ "${{ github.repository_owner }}" = "nasa" ]; then docker push ghcr.io/${{ github.repository_owner }}/isaac_analyst_notebook:latest; fi;
# Re-enable once #136 is fixed.
# if [ "${{ github.repository_owner }}" = "nasa" ]; then docker push ghcr.io/${{ github.repository_owner }}/isaac_analyst_notebook:latest; fi;

0 comments on commit 93ca2ed

Please sign in to comment.