Skip to content

Commit 0f0ab9e

Browse files
authored
chore(ci): Disable upx for cubestore on x86_64-apple-darwin (#8706)
Usage of upx has been disabled because it is crashing for macOS Ventura or above! It was disabled on 2024-09-05.
1 parent f7c07a7 commit 0f0ab9e

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -669,6 +669,7 @@ jobs:
669669
- target: x86_64-apple-darwin
670670
os: macos-12
671671
executable_name: cubestored
672+
# upx has been disabled because it is crashing for macOS Ventura or above! It was disabled on 2024-09-05.
672673
strip: false
673674
compress: false
674675
# bsd tar has a different format with Sparse files which breaks download script

.github/workflows/rust-cubestore-master.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,9 @@ jobs:
198198
- os: macos-12
199199
target: x86_64-apple-darwin
200200
executable_name: cubestored
201-
strip: true
202-
compress: true
201+
# upx has been disabled because it is crashing for macOS Ventura or above! It was disabled on 2024-09-05.
202+
strip: false
203+
compress: false
203204
fail-fast: false
204205
steps:
205206
- uses: actions/checkout@v4

.github/workflows/rust-cubestore.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,9 @@ jobs:
129129
- os: macos-12
130130
target: x86_64-apple-darwin
131131
executable_name: cubestored
132-
strip: true
133-
compress: true
132+
# upx has been disabled because it is crashing for macOS Ventura or above! It was disabled on 2024-09-05.
133+
strip: false
134+
compress: false
134135
fail-fast: false
135136
steps:
136137
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)