@@ -6,9 +6,9 @@ workflows:
6
6
circleci :
7
7
jobs :
8
8
- bazel-asan
9
- - bazel-dbg
9
+ - bazel-debug
10
10
- bazel-msan
11
- - bazel-opt
11
+ - bazel-release
12
12
- clang-analyze
13
13
- cpplint
14
14
- static-analysis
@@ -20,42 +20,39 @@ jobs:
20
20
bazel-asan :
21
21
working_directory : /tmp/cirrus-ci-build
22
22
docker :
23
- - image : toxchat/toktok-stack:latest-asan
23
+ - image : toxchat/toktok-stack:latest
24
24
25
25
steps :
26
26
- 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)
29
28
30
- bazel-dbg :
29
+ bazel-debug :
31
30
working_directory : /tmp/cirrus-ci-build
32
31
docker :
33
- - image : toxchat/toktok-stack:latest-debug
32
+ - image : toxchat/toktok-stack:latest
34
33
35
34
steps :
36
35
- 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)
39
37
40
38
bazel-msan :
41
39
working_directory : /tmp/cirrus-ci-build
42
40
docker :
43
- - image : toxchat/toktok-stack:latest-msan
41
+ - image : toxchat/toktok-stack:latest
44
42
45
43
steps :
46
44
- 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)
48
46
//c-toxcore/auto_tests:lossless_packet_test
49
47
50
- bazel-opt :
48
+ bazel-release :
51
49
working_directory : /tmp/cirrus-ci-build
52
50
docker :
53
- - image : toxchat/toktok-stack:latest-release
51
+ - image : toxchat/toktok-stack:latest
54
52
55
53
steps :
56
54
- 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)
59
56
60
57
static-analysis :
61
58
working_directory : ~/work
0 commit comments