diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml deleted file mode 100644 index 833cbc62..00000000 --- a/.bazelci/presubmit.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -tasks: - ubuntu2004: - shell_commands: - # Install Node.js and NPM - # https://github.com/nodesource/distributions#installation-instructions - - | - sudo apt-get update - sudo apt-get install -y ca-certificates curl gnupg - sudo mkdir -p /etc/apt/keyrings - curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg - NODE_MAJOR=20 - echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list - sudo apt-get update - sudo apt-get install nodejs -y - # Install node_modules and then compile and check the code for lint - # errors. - - npm ci - - npm run compile - - npm run check-lint - - npm run format-check - build_targets: - - "//:dummy_target_for_ci" diff --git a/.bazelrc b/.bazelrc deleted file mode 100644 index 710c4d81..00000000 --- a/.bazelrc +++ /dev/null @@ -1 +0,0 @@ -common --noenable_bzlmod diff --git a/BUILD b/BUILD deleted file mode 100644 index 5cfbcc78..00000000 --- a/BUILD +++ /dev/null @@ -1,3 +0,0 @@ -# This target only exists so that we can run some npm commands on Bazel CI (Buildkite). -# Eventually we should fix this project so that it can be built and tested with Bazel. -filegroup(name = "dummy_target_for_ci") diff --git a/WORKSPACE b/WORKSPACE deleted file mode 100644 index 1879955f..00000000 --- a/WORKSPACE +++ /dev/null @@ -1 +0,0 @@ -workspace(name = "build_bazel_vscode_bazel") \ No newline at end of file