Skip to content

Commit f0cac8d

Browse files
authored
avoid network access by default (#773)
1 parent 2c99f65 commit f0cac8d

14 files changed

+14
-14
lines changed

.github/workflows/aarch64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ jobs:
3838
ln -s -f /usr/bin/gcc-12 /usr/bin/gcc
3939
ln -s -f /usr/bin/g++-12 /usr/bin/g++
4040
run: |
41-
cmake -DCMAKE_CXX_STANDARD=20 -B build
41+
cmake -DCMAKE_CXX_STANDARD=20 -D ADA_TESTING=ON -B build
4242
cmake --build build
4343
ctest --test-dir build

.github/workflows/alpine.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
./alpine.sh apk add build-base cmake g++ linux-headers git bash icu-dev
3737
- name: cmake
3838
run: |
39-
./alpine.sh cmake -DADA_BENCHMARKS=ON -B build_for_alpine
39+
./alpine.sh cmake -D ADA_TESTING=ON -DADA_BENCHMARKS=ON -B build_for_alpine
4040
- name: build
4141
run: |
4242
./alpine.sh cmake --build build_for_alpine

.github/workflows/emscripten.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Checkout
3333
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v3.6.0
3434
- name: Configure
35-
run: emcmake cmake -B buildwasm -D ADA_TOOLS=OFF
35+
run: emcmake cmake -B buildwasm -D ADA_TESTING=ON -D ADA_TOOLS=OFF
3636
- name: Build
3737
run: cmake --build buildwasm
3838
- name: Test

.github/workflows/macos_install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3232
- name: Prepare
33-
run: cmake -DBUILD_SHARED_LIBS=${{matrix.shared}} -DCMAKE_INSTALL_PREFIX:PATH=destination -B build
33+
run: cmake -D ADA_TESTING=ON -DBUILD_SHARED_LIBS=${{matrix.shared}} -DCMAKE_INSTALL_PREFIX:PATH=destination -B build
3434
- name: Build
3535
run: cmake --build build -j=3
3636
- name: Install

.github/workflows/ubuntu-s390x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
apt-get update -q -y
3737
apt-get install -y cmake make g++ git ninja-build
3838
run: |
39-
cmake -DCMAKE_BUILD_TYPE=Release -G Ninja -B build
39+
cmake -D ADA_TESTING=ON -DCMAKE_BUILD_TYPE=Release -G Ninja -B build
4040
rm -r -f dependencies
4141
cmake --build build -j=4
4242
ctest --output-on-failure --test-dir build

.github/workflows/ubuntu-sanitized.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup Ninja
3232
run: sudo apt-get install ninja-build
3333
- name: Prepare
34-
run: cmake -DADA_SANITIZE=ON -DADA_DEVELOPMENT_CHECKS=ON -DBUILD_SHARED_LIBS=${{matrix.shared}} -G Ninja -B build
34+
run: cmake -D ADA_TESTING=ON -DADA_SANITIZE=ON -DADA_DEVELOPMENT_CHECKS=ON -DBUILD_SHARED_LIBS=${{matrix.shared}} -G Ninja -B build
3535
env:
3636
CXX: g++-12
3737
- name: Build

.github/workflows/ubuntu-undef.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup Ninja
3232
run: sudo apt-get install ninja-build
3333
- name: Prepare
34-
run: cmake -D ADA_SANITIZE_UNDEFINED=ON -DADA_DEVELOPMENT_CHECKS=ON -DBUILD_SHARED_LIBS=${{matrix.shared}} -G Ninja -B build
34+
run: cmake -D ADA_TESTING=ON -D ADA_SANITIZE_UNDEFINED=ON -DADA_DEVELOPMENT_CHECKS=ON -DBUILD_SHARED_LIBS=${{matrix.shared}} -G Ninja -B build
3535
env:
3636
CXX: g++-12
3737
- name: Build

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Setup Ninja
3333
run: sudo apt-get install ninja-build
3434
- name: Prepare
35-
run: cmake -D ADA_BENCHMARKS=ON -DBUILD_SHARED_LIBS=${{matrix.shared}} -G Ninja -B build
35+
run: cmake -D ADA_TESTING=ON -D ADA_BENCHMARKS=ON -DBUILD_SHARED_LIBS=${{matrix.shared}} -G Ninja -B build
3636
env:
3737
CXX: ${{matrix.cxx}}
3838
- name: Build

.github/workflows/ubuntu_install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Setup Ninja
3333
run: sudo apt-get install ninja-build
3434
- name: Prepare
35-
run: cmake -G Ninja -DBUILD_SHARED_LIBS=${{matrix.shared}} -DCMAKE_INSTALL_PREFIX:PATH=destination -B build
35+
run: cmake -D ADA_TESTING=ON -G Ninja -DBUILD_SHARED_LIBS=${{matrix.shared}} -DCMAKE_INSTALL_PREFIX:PATH=destination -B build
3636
- name: Build
3737
run: cmake --build build -j=4
3838
- name: Install

.github/workflows/ubuntu_pedantic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup Ninja
3232
run: sudo apt-get install ninja-build
3333
- name: Prepare
34-
run: cmake -DBUILD_SHARED_LIBS=${{matrix.shared}} -G Ninja -B build
34+
run: cmake -D ADA_TESTING=ON -DBUILD_SHARED_LIBS=${{matrix.shared}} -G Ninja -B build
3535
env:
3636
CXX: g++-12
3737
CXXFLAGS: -Werror

0 commit comments

Comments
 (0)