Skip to content

Commit

Permalink
Add java notebook to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tmetzl committed Jan 27, 2025
1 parent 6d2f1c0 commit 427e4cf
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build_and_push_all_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,36 @@ jobs:
push: ${{ inputs.push }}
secrets: inherit

java_notebook:
needs: [minimal_notebook]
uses: ./.github/workflows/build_image.yml
with:
force_build: ${{ inputs.force_build || needs.minimal_notebook.outputs.did_build_image == 'true' }}
registry: ${{ inputs.registry }}
base_image_name: ${{ inputs.registry }}/digiklausur/docker-stacks/minimal-notebook
base_image_tag: ${{ inputs.tag }}
image_path: images/java-notebook
image_name: java-notebook
image_tag: ${{ inputs.tag }}
push: ${{ inputs.push }}
secrets: inherit

e2x_java_notebook:
needs: [java_notebook]
uses: ./.github/workflows/build_e2xgrader_images.yml
with:
force_build: ${{ inputs.force_build || needs.java_notebook.outputs.did_build_image == 'true' }}
registry: ${{ inputs.registry }}
base_image_name: ${{ inputs.registry }}/digiklausur/docker-stacks/java-notebook
base_image_tag: ${{ inputs.tag }}
image_name: java-notebook
image_tag: ${{ inputs.tag }}
push: ${{ inputs.push }}
e2xgrader_installation_source: ${{ inputs.e2xgrader_installation_source }}
e2xgrader_version: ${{ inputs.e2xgrader_version }}
e2xgrader_branch: ${{ inputs.e2xgrader_branch }}
secrets: inherit

desktop_notebook:
needs: [minimal_notebook]
uses: ./.github/workflows/build_image.yml
Expand Down

0 comments on commit 427e4cf

Please sign in to comment.