Skip to content

Commit

Permalink
- fix regexp for log collection;
Browse files Browse the repository at this point in the history
  • Loading branch information
lukka committed Apr 21, 2021
1 parent 95e75c2 commit c4f8adb
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 58 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ inputs:
required: false
description: "Specify which shell to be used when launching commands. 'true' means the default shell is used. 'false' means no shell is used. It also can be an absolute with arguments of the shell to spawn commands with."
logCollectionRegExps:
default: "See also \"(.+CMakeOutput.log)\";See also \"(.+CMakeError.log)\";See logs for more information:\\s*(.+.log)"
default: "\\s*See also \"(.+CMakeOutput\\.log)\"\\.\\s*;\\s*See also \"(.+CMakeError\\.log)\"\\.\\s*;\\s*See logs for more information:\\s*(.+out\\.log)\\s*;\\s+(.+err\\.log)\\s*"
required: false
description: "Specifies a semicolon separated list of regular expressions that are used to identify log file paths in the workflow output. A regular expression must have a single capturing group, that is a single pair of parenthesis such as 'See also (.+.log)'. When a match occurs, the content of the file is written into the workflow output for disclosing its content to the user. The default regular expressions are for CMake's and vcpkg's log files."

Expand Down
106 changes: 53 additions & 53 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1",
"@actions/io": "^1.0.2",
"@lukka/action-lib": "1.0.21",
"@lukka/base-lib": "1.0.21",
"@lukka/base-util-lib": "1.0.21",
"@lukka/run-cmake-lib": "1.0.21",
"@lukka/action-lib": "1.0.24",
"@lukka/base-lib": "1.0.24",
"@lukka/base-util-lib": "1.0.24",
"@lukka/run-cmake-lib": "1.0.24",
"@types/adm-zip": "^0.4.32",
"@types/follow-redirects": "^1.8.0",
"@types/jest": "^26.0.14",
Expand Down

0 comments on commit c4f8adb

Please sign in to comment.