-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(docker): auto-build sdk & hub in build.rs (#1972)
<!-- Please make sure there is an issue that this PR is correlated to. --> ## Changes <!-- If there are frontend changes, please include screenshots. -->
- Loading branch information
1 parent
7f3697a
commit 36f37cc
Showing
32 changed files
with
231 additions
and
229 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,27 @@ | ||
* | ||
# MARK: Docker-specific | ||
.git/ | ||
|
||
!Cargo.lock | ||
!Cargo.toml | ||
!sdks/api/full/rust/Cargo.toml | ||
!sdks/api/full/rust/src | ||
!packages | ||
!resources/legacy/proto | ||
# MARK: Copied from .gitignore === | ||
**/.DS_Store | ||
|
||
!docker/monolith | ||
docker/monolith/*.md | ||
# Rust | ||
**/target | ||
|
||
# JavaScript | ||
**/.cache/ | ||
**/.turbo | ||
**/.yarn | ||
**/dist/ | ||
**/node_modules/ | ||
**/target | ||
.turbo | ||
|
||
# Site | ||
site/public/rss/ | ||
!site/public/rss/.gitkeep | ||
|
||
site/src/generated/ | ||
!site/src/generated/errorPages.json | ||
!site/src/generated/apiPages.json | ||
!site/src/generated/meta.json | ||
|
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,66 +1,27 @@ | ||
# Keep all .gitignore files in this file so we can easily keep it in sync with .dockerignore | ||
# | ||
# Make sure to update .dockerignore appropriately | ||
|
||
**/.DS_Store | ||
**/symbolCache.db | ||
|
||
# Terraform | ||
**/*.tfstate | ||
**/*.tfstate.* | ||
**/.terraform.* | ||
**/.terraform/ | ||
infra/tf/*/_bolt.tf | ||
|
||
# Vagrant | ||
.vagrant-remote | ||
.vagrant-digitalocean-token | ||
**/.vagrant/ | ||
|
||
# Bolt | ||
.bolt-cache.json | ||
.volumes/ | ||
Bolt.local.toml | ||
|
||
/namespaces/* | ||
!/namespaces/.gitkeep | ||
!/namespaces/README.md | ||
|
||
/secrets/* | ||
!/secrets/.gitkeep | ||
!/secrets/README.md | ||
|
||
# Generated code | ||
gen/build_script.sh | ||
gen/test_build_script.sh | ||
gen/svc/ | ||
gen/tf/ | ||
gen/docker/ | ||
gen/tests/ | ||
gen/k8s/ | ||
|
||
# K3s | ||
volumes/ | ||
|
||
# Rust | ||
lib/**/Cargo.lock | ||
!lib/bolt/Cargo.lock | ||
!lib/job-runner/Cargo.lock | ||
# Allows symlinking target instead of being a directory | ||
**/target | ||
**/target/ | ||
**/*.rustfmt | ||
|
||
# JavaScript | ||
**/.cache/ | ||
**/.turbo | ||
**/.yarn | ||
**/dist/ | ||
**/node_modules/ | ||
**/target | ||
.turbo | ||
|
||
tests/basic-game/.env | ||
# Site | ||
site/public/rss/ | ||
!site/public/rss/.gitkeep | ||
|
||
site/src/generated/ | ||
!site/src/generated/errorPages.json | ||
!site/src/generated/apiPages.json | ||
!site/src/generated/meta.json | ||
|
||
# Added by cargo | ||
|
||
/target | ||
.yarn/cache | ||
.yarn/install-state.gz | ||
.turbo |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.