Skip to content

Commit

Permalink
Add julia notebook to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tmetzl committed Aug 29, 2024
1 parent f2f8e87 commit 30be897
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build_and_push_all_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,35 @@ jobs:
e2xgrader_version: ${{ inputs.e2xgrader_version }}
e2xgrader_branch: ${{ inputs.e2xgrader_branch }}
secrets: inherit

julia_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/julia-notebook
image_name: julia-notebook
image_tag: ${{ inputs.tag }}
push: ${{ inputs.push }}

e2x_julia_notebook:
needs: [julia_notebook]
uses: ./.github/workflows/build_e2xgrader_images.yml
with:
force_build: ${{ inputs.force_build || needs.julia_notebook.outputs.did_build_image == 'true' }}
registry: ${{ inputs.registry }}
image_name: julia-notebook
image_tag: ${{ inputs.tag }}
base_image_name: ${{ inputs.registry }}/digiklausur/docker-stacks/julia-notebook
base_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



0 comments on commit 30be897

Please sign in to comment.