Skip to content

Commit

Permalink
apacheGH-41462: [CI] Temporary pin azurite to v3.29.0 (apache#41501)
Browse files Browse the repository at this point in the history
### Rationale for this change

install_azurite.sh is failing to install the latest version of Azurite and azure tests were failing.

### What changes are included in this PR?

Temporarily pin azurite to v3.29.0 to unblock 16.1.0 release. A follow up issue is tracked here: apache#41505

### Are these changes tested?

Yes via archery

### Are there any user-facing changes?

No
* GitHub Issue: apache#41462

Authored-by: Raúl Cumplido <[email protected]>
Signed-off-by: Raúl Cumplido <[email protected]>
  • Loading branch information
raulcd authored May 3, 2024
1 parent 2eb47ef commit c0aade5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ci/scripts/install_azurite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,18 @@

set -e

# Pin azurite to 3.29.0 due to https://github.com/apache/arrow/issues/41505
case "$(uname)" in
Darwin)
npm install -g azurite
npm install -g azurite@v3.29.0
which azurite
;;
MINGW*)
choco install nodejs.install
npm install -g azurite
npm install -g azurite@v3.29.0
;;
Linux)
npm install -g azurite
npm install -g azurite@v3.29.0
which azurite
;;
esac
Expand Down

0 comments on commit c0aade5

Please sign in to comment.