Skip to content

Commit

Permalink
fixup, linter wants space in the comments; IntelliJ is ok with it, so…
Browse files Browse the repository at this point in the history
… let's do that
  • Loading branch information
jiridanek committed Nov 28, 2024
1 parent d8bc7f3 commit 3e2328e
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/build-notebooks-TEMPLATE.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

#region Free up disk space
# region Free up disk space

- name: Free up additional disk space
# https://docs.github.com/en/actions/learn-github-actions/expressions
Expand Down Expand Up @@ -88,9 +88,9 @@ jobs:
df -h
free -h
#endregion
# endregion

#region Podman setup
# region Podman setup

# https://github.com/containers/buildah/issues/2521#issuecomment-884779112
- name: Workaround https://github.com/containers/podman/issues/22152#issuecomment-2027705598
Expand Down Expand Up @@ -162,9 +162,9 @@ jobs:
echo "IMAGE_TAG=${IMAGE_TAG}" >> "$GITHUB_OUTPUT"
echo "OUTPUT_IMAGE=${{ env.IMAGE_REGISTRY}}:${{ inputs.target }}-${IMAGE_TAG}" >> "$GITHUB_OUTPUT"
#endregion
# endregion

#region Trivy init & DB pre-pull
# region Trivy init & DB pre-pull

- name: "pull_request|schedule: resolve target if Trivy scan should run"
id: resolve-target
Expand Down Expand Up @@ -220,9 +220,9 @@ jobs:
image \
--download-java-db-only
#endregion
# endregion

#region Image build
# region Image build

# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#push
- name: "push|schedule: make ${{ inputs.target }}"
Expand All @@ -249,9 +249,9 @@ jobs:
- name: "Show podman images information"
run: podman images --digests

#endregion
# endregion

#region Makefile image tests
# region Makefile image tests

- name: "Check if we have tests or not"
id: have-tests
Expand Down Expand Up @@ -376,9 +376,9 @@ jobs:
# for make deploy, mandatory to specify for the more exotic cases
NOTEBOOK_TAG: "${{ inputs.target }}-${{ steps.calculated_vars.outputs.IMAGE_TAG }}"

#endregion
# endregion

#region Trivy vulnerability scan
# region Trivy vulnerability scan

- name: Run Trivy vulnerability scanner
if: ${{ steps.resolve-target.outputs.target }}
Expand Down Expand Up @@ -421,9 +421,9 @@ jobs:
cat $REPORT_FOLDER/$REPORT_FILE >> $GITHUB_STEP_SUMMARY
#endregion
# endregion

#region Typescript (browser) image tests
# region Typescript (browser) image tests

# https://playwright.dev/docs/ci
# https://playwright.dev/docs/docker
Expand Down Expand Up @@ -470,7 +470,7 @@ jobs:
path: tests/browser/playwright-report/
retention-days: 30

#endregion
# endregion

- run: df -h
if: "${{ !cancelled() }}"

0 comments on commit 3e2328e

Please sign in to comment.