Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Commit

Permalink
Add release tooling fixes: remove squash, remove black pre-commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiwalyajoshi committed Dec 15, 2021
1 parent d59387c commit 353c80d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
repos:
- repo: https://github.com/python/black
rev: stable
hooks:
- id: black
args: [--diff, --check]
language_version: python3.6
# - repo: https://github.com/python/black
# rev: stable
# hooks:
# - id: black
# args: [--diff, --check]
# language_version: python3.6
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.7
hooks:
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile.dcos-commons
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pipeline {
// Prevent indefinite hangs: DCOS-57576
timeout(activity: true, time: 1, unit: 'HOURS') {
// Build Docker image.
sh("docker build --squash -f ${DOCKERFILE} -t mesosphere/${IMAGE}:latest .")
sh("docker build -f ${DOCKERFILE} -t mesosphere/${IMAGE}:latest .")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile.dcos-commons-base_
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pipeline {
// Prevent indefinite hangs: DCOS-57576
timeout(activity: true, time: 1, unit: 'HOURS') {
// Build Docker image.
sh("docker build --squash -f ${DOCKERFILE} -t mesosphere/${IMAGE}:latest .")
sh("docker build -f ${DOCKERFILE} -t mesosphere/${IMAGE}:latest .")
}
}
}
Expand Down

0 comments on commit 353c80d

Please sign in to comment.