Skip to content
Merged
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
22 changes: 12 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,17 @@ jobs:
with:
version: ${{ matrix.julia-version }}
arch: x64
- uses: julia-actions/cache@v1
# For the time being cache artifacts only for squashfs, we need too much
# storage for the unpacked shards
if: ${{ matrix.squashfs == true }}
with:
# Reserve entire cache to artifacts
cache-name: ${{ matrix.squashfs }}
cache-artifacts: "true"
cache-packages: "false"
cache-registries: "false"
# We can't cache artifacts at the moment, it'd require more than 10 GiB.
# - uses: julia-actions/cache@v1
# # For the time being cache artifacts only for squashfs, we need too much
# # storage for the unpacked shards
# if: ${{ matrix.squashfs == true }}
# with:
# # Reserve entire cache to artifacts
# cache-name: ${{ matrix.squashfs }}
# cache-artifacts: "true"
# cache-packages: "false"
# cache-registries: "false"
- uses: julia-actions/julia-buildpkg@latest
- name: System info
run: julia --project=. --color=yes -e "using BinaryBuilderBase; BinaryBuilderBase.versioninfo()"
Expand All @@ -89,6 +90,7 @@ jobs:
JULIA_PKG_SERVER: ""
steps:
- uses: actions/checkout@v4
- uses: julia-actions/cache@v1
- uses: julia-actions/setup-julia@latest
with:
version: "1.7"
Expand Down