You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2022/04/15 20:21:09 UTC

[arrow-julia] branch main updated: Use a large RC number for CI (#316)

This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-julia.git


The following commit(s) were added to refs/heads/main by this push:
     new aa4e126  Use a large RC number for CI (#316)
aa4e126 is described below

commit aa4e1264d7256fcf695c4c1734e233322d1e099f
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Sat Apr 16 05:21:05 2022 +0900

    Use a large RC number for CI (#316)
    
    fix #314
    
    This is for avoiding verify release RC CI job failures with RC1
    commit.
---
 .github/workflows/ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4a98314..1545e49 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -47,7 +47,7 @@ jobs:
         run: |
           git config user.name "github-actions[bot]"
           git config user.email "github-actions[bot]@users.noreply.github.com"
-          RELEASE_DEFAULT=0 dev/release/release_rc.sh 1
+          RELEASE_DEFAULT=0 dev/release/release_rc.sh 100
       - uses: actions/cache@v1
         with:
           path: ~/.julia/artifacts
@@ -59,7 +59,7 @@ jobs:
           version=$(grep -o '^version = ".*"' "Project.toml" | \
                       sed -e 's/^version = "//g' \
                           -e 's/"$//g')
-          VERIFY_DEFAULT=0 dev/release/verify_rc.sh ${version} 1
+          VERIFY_DEFAULT=0 dev/release/verify_rc.sh ${version} 100
   test:
     name: ${{ matrix.pkg.name }} - Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
     runs-on: ${{ matrix.os }}