-
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.
cleanup: Add tor to home; fix inject-repo for cirrus.
- Loading branch information
Showing
24 changed files
with
160 additions
and
127 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import os.path as p | ||
|
||
GLIBC_FLAGS = [ | ||
"-isystem", | ||
"/nix/store/rfw51dqr3qn7b6fjy8hmx6f0x3hfwbx6-glibc-2.37-8-dev/include", | ||
] | ||
|
||
database = None | ||
|
||
compilation_database_folder = p.abspath(p.dirname(__file__)) | ||
|
||
def Settings(**kwargs): | ||
import ycm_core | ||
|
||
global database | ||
if database is None and p.exists(compilation_database_folder): | ||
database = ycm_core.CompilationDatabase(compilation_database_folder) | ||
|
||
language = kwargs['language'] | ||
|
||
if language == 'cfamily': | ||
filename = kwargs['filename'] | ||
|
||
compilation_info = database.GetCompilationInfoForFile(filename) | ||
if not compilation_info.compiler_flags_: | ||
return {} | ||
|
||
return { | ||
'flags': list(compilation_info.compiler_flags_) + GLIBC_FLAGS, | ||
'include_paths_relative_to_dir': compilation_info.compiler_working_dir_, | ||
} | ||
|
||
return {} |
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 dockerfiles
updated
3 files
+239 −226 | .github/workflows/docker.yml | |
+3 −3 | buildfarm/bazel/flake.lock | |
+2 −10 | buildfarm/bazel/flake.nix |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
filegroup( | ||
name = "platforms", | ||
srcs = glob(["lib/qt-*/plugins/platforms/*offscreen*"]), | ||
visibility = ["//visibility:public"], | ||
) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/sh | ||
|
||
set -eux | ||
|
||
# Build the entire set of docker images for the toktok dev container. | ||
(cd dockerfiles/buildfarm/bazel && ./build.sh) | ||
docker build -t toxchat/toktok-stack:latest-third_party -f tools/built/src/Dockerfile.third_party . | ||
docker build -t toxchat/toktok-stack:latest -f tools/built/src/Dockerfile . | ||
docker build -t toxchat/toktok-stack:latest-fastbuild -f tools/built/src/Dockerfile.fastbuild . | ||
docker build -t toxchat/toktok-stack:latest-dev -f tools/built/src/Dockerfile.dev . |
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
File renamed without changes.
File renamed without changes.
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/bin/sh | ||
|
||
set -eux | ||
|
||
|
Oops, something went wrong.