Skip to content

Commit

Permalink
Merge pull request #57 from elide-dev/v3-build-refactor
Browse files Browse the repository at this point in the history
Build Refactor / Devops
  • Loading branch information
sgammon authored Nov 17, 2022
2 parents eb98b0f + 0723afe commit bfc32df
Show file tree
Hide file tree
Showing 351 changed files with 67,623 additions and 40,406 deletions.
1 change: 0 additions & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

FROM us-docker.pkg.dev/elide-fw/tools/codespace:latest
ENTRYPOINT ["/usr/local/share/docker-init.sh"]
CMD ["sleep", "infinity"]
5 changes: 1 addition & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@
"java.debug.settings.enableRunDebugCodeLens": true,
"java.test.editor.enableShortcuts": true
},
"runArgs": [
"--init",
"--privileged"
],
"runArgs": ["--init", "--privileged"],
"overrideCommand": false,
"extensions": [
"asf.apache-netbeans-java",
Expand Down
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,8 @@ indent_size = 2
[*.{kt,kts}]
disabled_rules = indent,experimental:argument-list-wrapping,no-wildcard-imports

[packages/proto/build/generated/source/proto]
disabled_rules = indent,experimental:spacing-between-declarations-with-annotations,parameter-list-wrapping,no-wildcard-imports,experimental:spacing-between-declarations-with-comments,experimental:argument-list-wrapping,comment-spacing,no-semi,no-consecutive-blank-lines,no-blank-line-before-rbrace,curly-spacing

[tools/plugin/gradle-plugin/plugin-build/plugin/src/model/**/*.*]
disabled_rules = indent,experimental:spacing-between-declarations-with-annotations,parameter-list-wrapping,no-wildcard-imports,experimental:spacing-between-declarations-with-comments,experimental:argument-list-wrapping,comment-spacing,no-semi,no-consecutive-blank-lines,no-blank-line-before-rbrace,curly-spacing
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
*.* @sgammon
*.* @sgammon
2 changes: 0 additions & 2 deletions .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@

**Coming soon.**

2 changes: 0 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@

## Pull Request Template

**Coming soon.**

2 changes: 0 additions & 2 deletions .github/SECURITY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@

**Coming soon.**

18 changes: 18 additions & 0 deletions .github/codeql/codeql-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "CodeQL"

languages: java, javascript

queries:
- uses: security-and-quality

packs:
- codeql/java-queries

paths:
- packages

paths-ignore:
- node_modules
- build
- samples
- tools/plugin
11 changes: 11 additions & 0 deletions .github/dependency-review-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
license-check: true
vulnerability-check: true
fail-on-severity: "high"

allow-ghsas:
## Allow `node-fetch`, because it is unused in actual outputs made by this library.
- "GHSA-r683-j2x4-v87g"
- "GHSA-w7rc-rwvf-8q5r"

## Allow `jszip`, because we do not use it in the browser.
- "GHSA-jg8v-48h5-wgxg"
20 changes: 10 additions & 10 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
frontend:
- any: ['graalvm*/**/*']
all: ['module:graalvm']
- any: ['frontend/**/*']
all: ['module:frontend']
- any: ['rpc/**/*']
all: ['module:rpc']
- any: ['server/**/*']
all: ['module:server']
- any: ['base/**/*']
all: ['module:base']
- any: ["graalvm*/**/*"]
all: ["module:graalvm"]
- any: ["frontend/**/*"]
all: ["module:frontend"]
- any: ["rpc/**/*"]
all: ["module:rpc"]
- any: ["server/**/*"]
all: ["module:server"]
- any: ["base/**/*"]
all: ["module:base"]
12 changes: 3 additions & 9 deletions renovate.json → .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"enabled": true,
"extends": [
"config:base"
],
"extends": ["config:base"],
"enabledManagers": [
"bazel",
"cloudbuild",
Expand All @@ -17,9 +15,7 @@
"gradle",
"gradle-wrapper"
],
"baseBranches": [
"v3"
],
"baseBranches": ["v3"],
"pinDigests": true,
"rangeStrategy": "pin",
"updateLockFiles": true,
Expand All @@ -43,7 +39,5 @@
"groupName": "Firebase"
}
],
"postUpdateOptions": [
"yarnDedupeHighest"
]
"postUpdateOptions": ["yarnDedupeHighest"]
}
Loading

0 comments on commit bfc32df

Please sign in to comment.