Skip to content

Commit

Permalink
Prep for 0.2.0 (#317)
Browse files Browse the repository at this point in the history
- Update to acquire-zarr latest
- Set acquire-zarr log level to Error
  • Loading branch information
aliddell authored Nov 15, 2024
1 parent 4643eed commit 8e9e558
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 25 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,11 @@ jobs:
permissions:
actions: write

steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.platform }}-${{ matrix.build_type }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

steps:
- uses: actions/checkout@v3
with:
submodules: true
Expand Down Expand Up @@ -72,12 +71,11 @@ jobs:
permissions:
actions: write

steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-macos-latest-${{ matrix.build_type }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

steps:
- uses: actions/checkout@v3
with:
submodules: true
Expand Down
18 changes: 8 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,11 @@ jobs:
permissions:
actions: write

steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.platform }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

steps:
- uses: actions/checkout@v3
with:
submodules: true
Expand Down Expand Up @@ -72,12 +71,11 @@ jobs:
permissions:
actions: write

steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-macos-latest
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

steps:
- uses: actions/checkout@v3
with:
submodules: true
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/test_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,11 @@ jobs:
permissions:
actions: write

steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.platform }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

steps:
- uses: actions/checkout@v3
with:
submodules: true
Expand Down
1 change: 1 addition & 0 deletions src/zarr.storage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,7 @@ sink::Zarr::Zarr(ZarrVersion version,
, multiscale_(false)
, stream_(nullptr)
{
Zarr_set_log_level(ZarrLogLevel_Error);
EXPECT(
version_ < ZarrVersionCount, "Unsupported Zarr version: %d", version);
EXPECT(compression_codec_ < ZarrCompressionCodecCount,
Expand Down

0 comments on commit 8e9e558

Please sign in to comment.