Skip to content

Commit 1cecf3d

Browse files
committed
1
1 parent 49caaa1 commit 1cecf3d

File tree

3 files changed

+6
-17
lines changed

3 files changed

+6
-17
lines changed

.github/workflows/rc.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,6 @@ jobs:
7878
- ubuntu-latest
7979
# - windows-latest
8080
steps:
81-
- name: Install C++ Build Tools (Ubuntu)
82-
if: runner.os == 'Linux'
83-
run: |
84-
sudo apt-get update
85-
sudo apt-get install -y build-essential cmake ninja-build libssl-dev
86-
87-
- name: Install C++ Build Tools (macOS)
88-
if: runner.os == 'macOS'
89-
run: |
90-
brew reinstall cmake ninja openssl
91-
9281
- name: Checkout
9382
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9483

dev/release/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Run `dev/release/release_rc.sh` on a working copy of
3131
`[email protected]:apache/iceberg-cpp` not from your fork:
3232

3333
```console
34-
$ git clone [email protected]:apache/iceberg-cpp.git
34+
$ git clone [email protected]:apache/iceberg-cpp.git && cd iceberg-cpp
3535
$ dev/release/release_rc.sh ${VERSION} ${RC}
3636
(Send a vote email to [email protected].
3737
You can use a draft shown by release_rc.sh for the email.)

dev/release/release_rc.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ cd "${SOURCE_TOP_DIR}"
4949

5050
if [ "${RELEASE_PULL}" -gt 0 ] || [ "${RELEASE_PUSH_TAG}" -gt 0 ]; then
5151
git_origin_url="$(git remote get-url origin)"
52-
if [ "${git_origin_url}" != "[email protected]:apache/iceberg-cpp.git" ]; then
53-
echo "This script must be ran with working copy of apache/iceberg-cpp."
54-
echo "The origin's URL: ${git_origin_url}"
55-
exit 1
56-
fi
52+
# if [ "${git_origin_url}" != "[email protected]:apache/iceberg-cpp.git" ]; then
53+
# echo "This script must be ran with working copy of apache/iceberg-cpp."
54+
# echo "The origin's URL: ${git_origin_url}"
55+
# exit 1
56+
# fi
5757
fi
5858

5959
if [ "${RELEASE_PULL}" -gt 0 ]; then

0 commit comments

Comments
 (0)