Skip to content

Commit a8909d1

Browse files
committed
Update ci config to reflect recent rework of the repo.
1 parent cbde457 commit a8909d1

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,22 @@ jobs:
2222
2323
- name: Test (Default Build)
2424
run: |
25-
"${GITHUB_WORKSPACE}/bin/bazel" test //analysis/... //patch_subset/... //util/... //ift/... //common/... --test_output=all
25+
"${GITHUB_WORKSPACE}/bin/bazel" test --enable_workspace //util/... //ift/... //common/... --test_output=all
2626
env:
2727
CC: gcc-9
2828

2929
- name: Test (Optimized Build)
3030
run: |
31-
"${GITHUB_WORKSPACE}/bin/bazel" test -c opt //analysis/... //patch_subset/... //util/... //ift/... //common/... --test_output=all
31+
"${GITHUB_WORKSPACE}/bin/bazel" test --enable_workspace -c opt //util/... //ift/... //common/... --test_output=all
3232
env:
3333
CC: gcc-9
3434

35-
- name: Build Webassembly
36-
run: |
37-
"${GITHUB_WORKSPACE}/bin/bazel" build --copt=-Os js_client:patch_subset_wasm js_client:ift_wasm
38-
env:
39-
CC: gcc-9
35+
# TODO renable once re-implemented using a wasm build of the rust client.
36+
# - name: Build Webassembly
37+
# run: |
38+
# "${GITHUB_WORKSPACE}/bin/bazel" build --enable_workspace --copt=-Os js_client:patch_subset_wasm js_client:ift_wasm
39+
# env:
40+
# CC: gcc-9
4041

4142
check_tests_osx:
4243
name: Check Tests (Mac OS)
@@ -49,7 +50,7 @@ jobs:
4950
brew install bazelisk
5051
5152
- name: Run Tests
52-
run: bazel test //analysis/... //patch_subset/... //util/... //ift/... //common/... --test_output=all
53+
run: bazel test --enable_workspace //util/... //ift/... //common/... --test_output=all
5354

5455
check_formatting:
5556
name: Check Formatting

0 commit comments

Comments
 (0)