Skip to content

Commit

Permalink
chore(ci): Disable upx for cubestore on x86_64-apple-darwin (#8706)
Browse files Browse the repository at this point in the history
Usage of upx has been disabled because it is crashing for macOS Ventura or above! It was disabled on 2024-09-05.
  • Loading branch information
ovr authored Sep 13, 2024
1 parent f7c07a7 commit 0f0ab9e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -669,6 +669,7 @@ jobs:
- target: x86_64-apple-darwin
os: macos-12
executable_name: cubestored
# upx has been disabled because it is crashing for macOS Ventura or above! It was disabled on 2024-09-05.
strip: false
compress: false
# bsd tar has a different format with Sparse files which breaks download script
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/rust-cubestore-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,9 @@ jobs:
- os: macos-12
target: x86_64-apple-darwin
executable_name: cubestored
strip: true
compress: true
# upx has been disabled because it is crashing for macOS Ventura or above! It was disabled on 2024-09-05.
strip: false
compress: false
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/rust-cubestore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,9 @@ jobs:
- os: macos-12
target: x86_64-apple-darwin
executable_name: cubestored
strip: true
compress: true
# upx has been disabled because it is crashing for macOS Ventura or above! It was disabled on 2024-09-05.
strip: false
compress: false
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 0f0ab9e

Please sign in to comment.