This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 1bc8a605 ci: check out submodules for verification build (#1549)
1bc8a605 is described below
commit 1bc8a60517c610be601ec1fac13a5b44798cb1fd
Author: David Li <[email protected]>
AuthorDate: Thu Feb 15 10:23:01 2024 -0500
ci: check out submodules for verification build (#1549)
---
.github/workflows/nightly-verify.yml | 2 ++
.github/workflows/verify.yml | 1 +
ci/scripts/source_build.sh | 3 ++-
3 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/nightly-verify.yml
b/.github/workflows/nightly-verify.yml
index c4a3fdf6..fce4d2b8 100644
--- a/.github/workflows/nightly-verify.yml
+++ b/.github/workflows/nightly-verify.yml
@@ -34,6 +34,8 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
+ persist-credentials: false
+ submodules: recursive
- name: Prepare version
shell: bash
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml
index 966167bc..5fd56dd5 100644
--- a/.github/workflows/verify.yml
+++ b/.github/workflows/verify.yml
@@ -76,6 +76,7 @@ jobs:
with:
fetch-depth: 0
persist-credentials: false
+ submodules: recursive
- uses: conda-incubator/setup-miniconda@v3
# The Unix script will set up conda itself
if: matrix.os == 'windows-latest'
diff --git a/ci/scripts/source_build.sh b/ci/scripts/source_build.sh
index 3d7f9d7b..b3cc8204 100755
--- a/ci/scripts/source_build.sh
+++ b/ci/scripts/source_build.sh
@@ -17,7 +17,8 @@
# specific language governing permissions and limitations
# under the License.
-set -eu
+set -euo pipefail
+set -x
main() {
local -r source_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"