Skip to content

Commit ba51849

Browse files
committed
chore: Use new bazel script for circle ci.
1 parent 8278e9c commit ba51849

File tree

2 files changed

+12
-27
lines changed

2 files changed

+12
-27
lines changed

Diff for: .circleci/bazel-test

-12
This file was deleted.

Diff for: .circleci/config.yml

+12-15
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ workflows:
66
circleci:
77
jobs:
88
- bazel-asan
9-
- bazel-dbg
9+
- bazel-debug
1010
- bazel-msan
11-
- bazel-opt
11+
- bazel-release
1212
- clang-analyze
1313
- cpplint
1414
- static-analysis
@@ -20,42 +20,39 @@ jobs:
2020
bazel-asan:
2121
working_directory: /tmp/cirrus-ci-build
2222
docker:
23-
- image: toxchat/toktok-stack:latest-asan
23+
- image: toxchat/toktok-stack:latest
2424

2525
steps:
2626
- checkout
27-
- run: .circleci/bazel-test
28-
//c-toxcore/...
27+
- run: bash <(curl -s https://raw.githubusercontent.com/TokTok/ci-tools/refs/heads/master/tools/circleci-bazel-test)
2928

30-
bazel-dbg:
29+
bazel-debug:
3130
working_directory: /tmp/cirrus-ci-build
3231
docker:
33-
- image: toxchat/toktok-stack:latest-debug
32+
- image: toxchat/toktok-stack:latest
3433

3534
steps:
3635
- checkout
37-
- run: .circleci/bazel-test
38-
//c-toxcore/...
36+
- run: bash <(curl -s https://raw.githubusercontent.com/TokTok/ci-tools/refs/heads/master/tools/circleci-bazel-test)
3937

4038
bazel-msan:
4139
working_directory: /tmp/cirrus-ci-build
4240
docker:
43-
- image: toxchat/toktok-stack:latest-msan
41+
- image: toxchat/toktok-stack:latest
4442

4543
steps:
4644
- checkout
47-
- run: .circleci/bazel-test
45+
- run: bash <(curl -s https://raw.githubusercontent.com/TokTok/ci-tools/refs/heads/master/tools/circleci-bazel-test)
4846
//c-toxcore/auto_tests:lossless_packet_test
4947

50-
bazel-opt:
48+
bazel-release:
5149
working_directory: /tmp/cirrus-ci-build
5250
docker:
53-
- image: toxchat/toktok-stack:latest-release
51+
- image: toxchat/toktok-stack:latest
5452

5553
steps:
5654
- checkout
57-
- run: .circleci/bazel-test
58-
//c-toxcore/...
55+
- run: bash <(curl -s https://raw.githubusercontent.com/TokTok/ci-tools/refs/heads/master/tools/circleci-bazel-test)
5956

6057
static-analysis:
6158
working_directory: ~/work

0 commit comments

Comments
 (0)