Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove problem matcher
  • Loading branch information
Greg Brimble committed Apr 25, 2020
1 parent 515c5f6 commit 6897db7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 21 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Expand Up @@ -3,5 +3,4 @@ RUN apk update && apk upgrade && \
apk add --no-cache bash git openssh
COPY entrypoint.sh /entrypoint.sh
COPY lib/actions/checkout/index.js /checkout.js
COPY lib/actions/checkout/problem-matcher.json /problem-matcher.json
ENTRYPOINT ["/entrypoint.sh"]
2 changes: 1 addition & 1 deletion lib/actions/checkout/README.md
@@ -1,3 +1,3 @@
# Checkout Action

Taken from [dist/index.js](https://github.com/actions/checkout/blob/01aecccf739ca6ff86c0539fbc67a7a5007bbc81/dist/index.js) and [dist/problem-matcher.json](https://github.com/actions/checkout/blob/01aecccf739ca6ff86c0539fbc67a7a5007bbc81/dist/problem-matcher.json).
Taken from [dist/](https://github.com/actions/checkout/blob/01aecccf739ca6ff86c0539fbc67a7a5007bbc81/dist).
12 changes: 6 additions & 6 deletions lib/actions/checkout/index.js
Expand Up @@ -3372,12 +3372,12 @@ module.exports = /******/ (function (modules, runtime) {
try {
const sourceSettings = inputHelper.getInputs();
try {
// Register problem matcher
coreCommand.issueCommand(
"add-matcher",
{},
path.join(__dirname, "problem-matcher.json")
);
// // Register problem matcher
// coreCommand.issueCommand(
// "add-matcher",
// {},
// path.join(__dirname, "problem-matcher.json")
// );
// Get sources
yield gitSourceProvider.getSource(sourceSettings);
} finally {
Expand Down
13 changes: 0 additions & 13 deletions lib/actions/checkout/problem-matcher.json

This file was deleted.

0 comments on commit 6897db7

Please sign in to comment.