-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
- Loading branch information
1 parent
9d8ac06
commit 45760ac
Showing
7 changed files
with
32 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
steps: | ||
- script: ctest --output-on-failure -C $(utilities.build_type) -T test | ||
displayName: 'Test' | ||
displayName: "Test" | ||
workingDirectory: build | ||
|
||
- task: PublishTestResults@2 | ||
inputs: | ||
testResultsFormat: 'cTest' | ||
testResultsFiles: '**/Test.xml' | ||
testResultsFormat: "cTest" | ||
testResultsFiles: "**/Test.xml" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
description: 'Test out a bare bones configuration with a CMake version' | ||
description: "Test out a bare bones configuration with a CMake version" | ||
inputs: | ||
version: | ||
description: 'The full version of CMake to check' | ||
description: "The full version of CMake to check" | ||
required: true | ||
options: | ||
description: 'The CMake configuration options' | ||
description: "The CMake configuration options" | ||
required: false | ||
default: '' | ||
name: 'Configure with CMake' | ||
default: "" | ||
name: "Configure with CMake" | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
using: "docker" | ||
image: "Dockerfile" | ||
args: | ||
- ${{ inputs.version }} | ||
- ${{ inputs.options }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
name: 'Create File Update PR' | ||
description: 'Pushes a new branch with changed files and opens a PR for updating the changed files in the base branch' | ||
name: "Create File Update PR" | ||
description: "Pushes a new branch with changed files and opens a PR for updating the changed files in the base branch" | ||
inputs: | ||
no-hash: # turn off inclusion of the hash in the created branch name | ||
description: 'Do not include the changed file hash in the PR branch name' | ||
description: "Do not include the changed file hash in the PR branch name" | ||
default: false | ||
replace-branch: # if a PR branch already exists, replaces it with updated contents | ||
description: 'Replace the contents of an existing PR branch of the same name' | ||
description: "Replace the contents of an existing PR branch of the same name" | ||
default: false | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
using: "docker" | ||
image: "Dockerfile" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters