Skip to content

Commit

Permalink
hmm
Browse files Browse the repository at this point in the history
  • Loading branch information
lidavidm committed Mar 15, 2024
1 parent 4a2de99 commit c6c696f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ jobs:
BUILD_DRIVER_MANAGER: "1"
BUILD_DRIVER_POSTGRESQL: "1"
run: |
sudo sysctl vm.mmap_rnd_bits=28
./ci/scripts/cpp_build.sh "$(pwd)" "$(pwd)/build"
./ci/scripts/python_build.sh "$(pwd)" "$(pwd)/build"
- name: Configure Integration Env Vars
Expand All @@ -225,6 +226,7 @@ jobs:
BUILD_DRIVER_POSTGRESQL: "1"
PYTEST_ADDOPTS: "--error-for-skips"
run: |
sudo sysctl vm.mmap_rnd_bits=28
env POSTGRES_VERSION=11 docker compose up --wait --detach postgres-test
./ci/scripts/cpp_test.sh "$(pwd)/build"
./ci/scripts/python_test.sh "$(pwd)" "$(pwd)/build"
Expand All @@ -236,6 +238,7 @@ jobs:
BUILD_DRIVER_POSTGRESQL: "1"
PYTEST_ADDOPTS: "--error-for-skips"
run: |
sudo sysctl vm.mmap_rnd_bits=28
env POSTGRES_VERSION=12 docker compose up --wait --detach postgres-test
./ci/scripts/cpp_test.sh "$(pwd)/build"
./ci/scripts/python_test.sh "$(pwd)" "$(pwd)/build"
Expand All @@ -247,6 +250,7 @@ jobs:
BUILD_DRIVER_POSTGRESQL: "1"
PYTEST_ADDOPTS: "--error-for-skips"
run: |
sudo sysctl vm.mmap_rnd_bits=28
env POSTGRES_VERSION=13 docker compose up --wait --detach postgres-test
./ci/scripts/cpp_test.sh "$(pwd)/build"
./ci/scripts/python_test.sh "$(pwd)" "$(pwd)/build"
Expand All @@ -258,6 +262,7 @@ jobs:
BUILD_DRIVER_POSTGRESQL: "1"
PYTEST_ADDOPTS: "--error-for-skips"
run: |
sudo sysctl vm.mmap_rnd_bits=28
env POSTGRES_VERSION=14 docker compose up --wait --detach postgres-test
./ci/scripts/cpp_test.sh "$(pwd)/build"
./ci/scripts/python_test.sh "$(pwd)" "$(pwd)/build"
Expand All @@ -269,6 +274,7 @@ jobs:
BUILD_DRIVER_POSTGRESQL: "1"
PYTEST_ADDOPTS: "--error-for-skips"
run: |
sudo sysctl vm.mmap_rnd_bits=28
env POSTGRES_VERSION=15 docker compose up --wait --detach postgres-test
./ci/scripts/cpp_test.sh "$(pwd)/build"
./ci/scripts/python_test.sh "$(pwd)" "$(pwd)/build"
Expand All @@ -280,6 +286,7 @@ jobs:
BUILD_DRIVER_POSTGRESQL: "1"
PYTEST_ADDOPTS: "--error-for-skips"
run: |
sudo sysctl vm.mmap_rnd_bits=28
env POSTGRES_VERSION=16 docker compose up --wait --detach postgres-test
./ci/scripts/cpp_test.sh "$(pwd)/build"
./ci/scripts/python_test.sh "$(pwd)" "$(pwd)/build"
Expand Down Expand Up @@ -328,6 +335,7 @@ jobs:
BUILD_DRIVER_SNOWFLAKE: "1"
ADBC_SNOWFLAKE_URI: ${{ secrets.SNOWFLAKE_URI }}
run: |
sudo sysctl vm.mmap_rnd_bits=28
./ci/scripts/cpp_build.sh "$(pwd)" "$(pwd)/build"
./ci/scripts/cpp_test.sh "$(pwd)/build"
- name: Build and Test Snowflake Driver (Python)
Expand All @@ -338,5 +346,6 @@ jobs:
BUILD_DRIVER_SNOWFLAKE: "1"
ADBC_SNOWFLAKE_URI: ${{ secrets.SNOWFLAKE_URI }}
run: |
sudo sysctl vm.mmap_rnd_bits=28
./ci/scripts/python_build.sh "$(pwd)" "$(pwd)/build"
./ci/scripts/python_test.sh "$(pwd)" "$(pwd)/build"
1 change: 1 addition & 0 deletions .github/workflows/native-unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ jobs:
BUILD_DRIVER_POSTGRESQL: "0"
BUILD_DRIVER_SQLITE: "1"
run: |
sudo sysctl vm.mmap_rnd_bits=28
./ci/scripts/cpp_test.sh "$(pwd)/build"
clang-tidy-conda:
Expand Down

0 comments on commit c6c696f

Please sign in to comment.