-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These help make sure all repos have the same configs.
- Loading branch information
Showing
62 changed files
with
395 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule c-toxcore
updated
31 files
Submodule ci_tools
updated
42 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
x-shared-params: &shared_params | ||
container_name: bazel-build | ||
depends_on: | ||
- bazel-cache | ||
build: | ||
context: . | ||
dockerfile: tools/built/src/Dockerfile | ||
image: toxchat/toktok-stack:latest | ||
volumes: | ||
- .:/src/workspace | ||
environment: | ||
HOME: /home/builder | ||
|
||
services: | ||
bazel-cache: | ||
user: ${USER_ID}:${GROUP_ID} | ||
container_name: bazel-cache | ||
image: buchgr/bazel-remote-cache | ||
restart: on-failure | ||
ports: | ||
- "9092:9092" | ||
command: --max_size=2 | ||
volumes: | ||
- ../bazel-cache:/data | ||
environment: | ||
BAZEL_REMOTE_GRPC_PORT: 9092 | ||
third_party: | ||
build: | ||
context: . | ||
dockerfile: tools/built/src/Dockerfile.third_party | ||
image: toxchat/toktok-stack:latest-third_party | ||
|
||
latest: | ||
<<: *shared_params | ||
|
||
fastbuild: | ||
<<: *shared_params | ||
command: bazel test | ||
--config=ci | ||
--config=nix | ||
--remote_cache=grpc://bazel-cache:9092 | ||
//... | ||
|
||
arm64: | ||
<<: *shared_params | ||
command: bazel build | ||
--config=ci | ||
--config=nix | ||
--remote_cache=grpc://bazel-cache:9092 | ||
--config=linux-arm64-musl | ||
//... | ||
|
||
asan: | ||
<<: *shared_params | ||
command: bazel test | ||
--config=ci | ||
--config=nix | ||
--remote_cache=grpc://bazel-cache:9092 | ||
--config=asan | ||
--build_tag_filters=-haskell,-fuzz-test | ||
--test_tag_filters=-haskell,-fuzz-test | ||
//c-toxcore/... | ||
|
||
msan: | ||
<<: *shared_params | ||
command: bazel test | ||
--config=ci | ||
--config=nix | ||
--remote_cache=grpc://bazel-cache:9092 | ||
--config=msan | ||
--build_tag_filters=-haskell,-fuzz-test | ||
--test_tag_filters=-haskell,-fuzz-test | ||
-- | ||
//c-toxcore/auto_tests/... | ||
-//c-toxcore/auto_tests:proxy_test | ||
|
||
release: | ||
<<: *shared_params | ||
command: bazel test | ||
--config=ci | ||
--config=nix | ||
--remote_cache=grpc://bazel-cache:9092 | ||
--config=release | ||
//... | ||
|
||
windows: | ||
<<: *shared_params | ||
command: bazel build | ||
--config=ci | ||
--config=nix | ||
--remote_cache=grpc://bazel-cache:9092 | ||
--config=windows-x86_64 | ||
//... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule debugtox
updated
49 files
Submodule dockerfiles
updated
4 files
+6 −1 | .github/workflows/draft.yml | |
+76 −0 | .reviewable/completion.js | |
+4 −0 | .reviewable/settings.yaml | |
+3 −2 | flutter-web/Dockerfile |
Submodule experimental
updated
11 files
+3 −0 | .clog.toml | |
+24 −0 | .github/ISSUE_TEMPLATE/release.yaml | |
+14 −0 | .github/workflows/ci.yml | |
+50 −0 | .github/workflows/deploy.yml | |
+23 −0 | .github/workflows/draft.yml | |
+5 −1 | .github/workflows/pages.yml | |
+11 −10 | .github/workflows/release.yml | |
+113 −0 | CHANGELOG.md | |
+7 −0 | CMakeLists.txt | |
+1 −0 | third_party/.gitignore | |
+11 −0 | tools/update-versions.sh |
Submodule hs-apigen
updated
3 files
+6 −1 | .github/workflows/draft.yml | |
+76 −0 | .reviewable/completion.js | |
+4 −0 | .reviewable/settings.yaml |
Submodule hs-cimple
updated
3 files
+6 −1 | .github/workflows/draft.yml | |
+76 −0 | .reviewable/completion.js | |
+4 −0 | .reviewable/settings.yaml |
Submodule hs-github-tools
updated
14 files
+13 −0 | .github/docker/server.Dockerfile | |
+6 −1 | .github/workflows/draft.yml | |
+76 −0 | .reviewable/completion.js | |
+4 −0 | .reviewable/settings.yaml | |
+4 −6 | admin/org.yaml | |
+75 −33 | admin/repos.yaml | |
+3 −1 | github-tools.cabal | |
+26 −14 | src/GitHub/Tools/AutoMerge.hs | |
+77 −0 | src/GitHub/Types/IssueTemplate.hs | |
+26 −0 | src/GitHub/Types/Json.hs | |
+3 −19 | src/GitHub/Types/Workflow.hs | |
+30 −21 | tools/check-workflows.hs | |
+0 −1 | tools/hub-automerge.hs | |
+15 −6 | web/webservice.hs |
Oops, something went wrong.