Skip to content

Commit

Permalink
fixups on the cummulative diff
Browse files Browse the repository at this point in the history
  • Loading branch information
jiridanek committed Nov 22, 2024
1 parent 903c4e6 commit e4a46cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-notebooks-TEMPLATE.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ jobs:
# quick check podman works
podman ps
- name: Show error logs (on failure)
if: ${{ failure() }}
run: journalctl -xe
Expand Down Expand Up @@ -359,15 +360,15 @@ jobs:
TARGET="$FS_SCAN_FOLDER"
TYPE="fs"
else
TARGET="${OUTPUT_IMAGE}"
TARGET="${{ steps.calculated_vars.outputs.OUTPUT_IMAGE }}"
TYPE="image"
fi
elif [[ "$EVENT_NAME" == "schedule" ]]; then
if [[ -n "$FS_SCAN_FOLDER" ]]; then
TARGET="$FS_SCAN_FOLDER"
TYPE="fs"
else
TARGET="${OUTPUT_IMAGE}"
TARGET="${{ steps.calculated_vars.outputs.OUTPUT_IMAGE }}"
TYPE="image"
fi
fi
Expand Down
4 changes: 3 additions & 1 deletion ci/cached-builds/storage.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
# https://access.redhat.com/solutions/6986565
[storage]
driver = "overlay"
graphroot="/home/runner/.local/share/containers/storage"

graphroot = "/home/runner/.local/share/containers/storage"
runroot = "/home/runner/.local/share/containers/storage"

transient_store = true

[storage.options]
Expand Down

0 comments on commit e4a46cf

Please sign in to comment.