Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
26 changes: 22 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
matrix:
gap-version: ${{ fromJSON(needs.define-matrix.outputs.versions) }}
operating-system-base: ${{ fromJSON(needs.define-matrix.outputs.systems) }}
uses: ./.github/workflows/worflow-dispatch-build.yaml
uses: ./.github/workflows/workflow-dispatch-build.yaml
with:
gap-type: gap
target: bare
Expand All @@ -60,24 +60,42 @@ jobs:
matrix:
gap-version: ${{ fromJSON(needs.define-matrix.outputs.versions) }}
operating-system-base: ${{ fromJSON(needs.define-matrix.outputs.systems) }}
uses: ./.github/workflows/worflow-dispatch-build.yaml
uses: ./.github/workflows/workflow-dispatch-build.yaml
with:
gap-type: gap
target: slim
gap-version: ${{ matrix.gap-version }}
operating-system-base: ${{ matrix.operating-system-base }}

buildfull:
needs:
- define-matrix
- bare
- slim
strategy:
fail-fast: true
matrix:
gap-version: ${{ fromJSON(needs.define-matrix.outputs.versions) }}
operating-system-base: ${{ fromJSON(needs.define-matrix.outputs.systems) }}
uses: ./.github/workflows/workflow-dispatch-build.yaml
with:
gap-type: gap
target: buildfull
gap-version: ${{ matrix.gap-version }}
operating-system-base: ${{ matrix.operating-system-base }}

full:
needs:
- define-matrix
- bare
- slim
- buildfull
strategy:
fail-fast: true
matrix:
gap-version: ${{ fromJSON(needs.define-matrix.outputs.versions) }}
operating-system-base: ${{ fromJSON(needs.define-matrix.outputs.systems) }}
uses: ./.github/workflows/worflow-dispatch-build.yaml
uses: ./.github/workflows/workflow-dispatch-build.yaml
with:
gap-type: gap
target: full
Expand All @@ -95,7 +113,7 @@ jobs:
matrix:
gap-version: ${{ fromJSON(needs.define-matrix.outputs.versions) }}
operating-system-base: ${{ fromJSON(needs.define-matrix.outputs.systems) }}
uses: ./.github/workflows/worflow-dispatch-build.yaml
uses: ./.github/workflows/workflow-dispatch-build.yaml
with:
gap-type: jupyter-gap
target: full
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@

```mermaid
graph RL
V1[gap-docker:4.13.1-bare] --> T
V2[gap-docker:4.13.1-full] --> T
V3[gap-docker:4.13.1-slim] --> T
V1[gap-docker:4.13.1-bare] --> T
V2[gap-docker:4.13.1-full] --> T
V3[gap-docker:4.13.1-slim] --> T
V4[gap-docker:4.13.1-buildfull] --> T
T --> V
V --> G

G@{ shape: processes, label: "gap-docker"}
V@{ shape: processes, label: "gap-version"}
T@{ shape: processes, label: "bare/slim/full"}
T@{ shape: processes, label: "bare/slim/buildfull/full"}
```

* Run a container:
Expand Down
Loading