Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Apply linting and ignore new bazel dirs #1223

Merged
merged 6 commits into from
Aug 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.1
5.2.0
16 changes: 10 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ commands:
default: "x86_64"
version:
type: string
default: "5.1.1"
default: "5.2.0"
steps:
- run:
name: Install bazel
Expand Down Expand Up @@ -67,7 +67,7 @@ commands:
default: "8.2.4"
bazel-version:
type: string
default: "5.1.1"
default: "5.2.0"
bazel-platform:
type: string
default: "x86_64"
Expand Down Expand Up @@ -374,7 +374,7 @@ jobs:
platform: "sbsa"
cudnn-version: << pipeline.parameters.cudnn-jetson-version >>
trt-version-short: << pipeline.parameters.trt-jetson-version-short >>
bazel-version: "5.1.1"
bazel-version: << pipeline.parameters.bazel-version >>
bazel-platform: "arm64"
- run:
name: Set python version
Expand Down Expand Up @@ -430,7 +430,7 @@ jobs:
platform: "x86_64"
cudnn-version: << pipeline.parameters.cudnn-release-version >>
trt-version-short: << pipeline.parameters.trt-release-version-short >>
bazel-version: "5.1.1"
bazel-version: << pipeline.parameters.bazel-version >>
bazel-platform: "x86_64"
- install-torch-from-index:
torch-build: << parameters.torch-build >>
Expand Down Expand Up @@ -475,7 +475,7 @@ jobs:
platform: "x86_64"
cudnn-version: << pipeline.parameters.cudnn-nightly-version >>
trt-version-short: << pipeline.parameters.trt-nightly-version-short >>
bazel-version: "5.1.1"
bazel-version: << pipeline.parameters.bazel-version >>
bazel-platform: "x86_64"
- install-torch-from-index:
torch-build: << parameters.torch-build >>
Expand Down Expand Up @@ -526,7 +526,7 @@ jobs:
platform: "x86_64"
cudnn-version: << parameters.cudnn-version >>
trt-version-short: << parameters.trt-version-short >>
bazel-version: "5.1.1"
bazel-version: << pipeline.parameters.bazel-version >>
bazel-platform: "x86_64"
- create-py-env:
trt-version-long: << parameters.trt-version-long >>
Expand Down Expand Up @@ -744,6 +744,10 @@ jobs:


parameters:
bazel-version:
type: string
default: "5.2.0"

# Nightly platform config
torch-nightly-build:
type: string
Expand Down
2 changes: 1 addition & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ performance-*,
HeaderFilterRegex: 'torch/csrc/.*'
AnalyzeTemporaryDtors: false
CheckOptions:
...
...
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ examples/int8/training/vgg16/data/*
examples/int8/datasets/data/*
env/**/*
*.ts
.nox/**/*
.nox/**/*
1 change: 1 addition & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e4951241210f85c1133c701b3be1abaf045975da
2 changes: 1 addition & 1 deletion .github/actions/assigner/.gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

# don't diff machine generated files
dist/index.js -diff
package-lock.json -diff
package-lock.json -diff
2 changes: 1 addition & 1 deletion .github/actions/assigner/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.DS_Store
node_modules/
lib/
!dist
!dist
Loading