-
Notifications
You must be signed in to change notification settings - Fork 19
937 update CI actions #938
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
Merged
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
69cccd8
update actions
patricklnz 08fb60b
use pre-commit 3.0.1
patricklnz 6a4e839
use manylinux_2_28
patricklnz ecf09a4
test python packages for min and max version
patricklnz 0d0c69b
change artifact path to prevent duplicates
patricklnz f55c275
dont allow duplicate artifacts
patricklnz abd06de
Merge branch 'main' into 937-update-CI-actions
patricklnz 381fd68
adjust to main
patricklnz 2be2b6d
bug fxing of duplicate artifact names
patricklnz d06103b
seperate merging of artifacts
patricklnz a55d136
syntax error
patricklnz 26bc0dd
typo
patricklnz 57fa02d
use old container image for build py simulation
patricklnz 930ceca
fix cpp gcc openmp test
patricklnz 49695d5
change upload version of buildpysim
patricklnz e9682e7
fix
patricklnz 11765c7
try if yml works
patricklnz a1909f2
windows test fail
patricklnz 0e8d06f
yml syntax
patricklnz 84c1d2d
using eq and ne
patricklnz 1f20855
typo
patricklnz ddd04df
use if else
patricklnz 844cc13
seperate jobs for simulation wheels
patricklnz b36efbe
test no 314
patricklnz 0db2b83
fix mscv
patricklnz 7c601ec
use download v3 for simulation package
patricklnz f59b2bc
typo
patricklnz dcdfae4
fixsurrogate
patricklnz 1f224e8
codecov and pages depend on merging of artifacts
patricklnz a1eebeb
version of openmp
patricklnz 91aa047
avoid duplicates in testpysurrogate
patricklnz 846a3b6
comments
patricklnz 60bfe8f
merge surrogate test artifacts
patricklnz 7229e26
cpp win msvc
patricklnz 40b7be7
typo
patricklnz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,26 +1,30 @@ | ||
| name: "Windows Test" | ||
| description: "Run the C++ unit tests on Windows" | ||
| inputs: | ||
| build-artifact: | ||
| description: "Name of the build artifact that contains the unit test binary." | ||
| artifact-pattern: | ||
| description: "Name of the build artifact that contains the unit test binary, will also be used for upload artifacts." | ||
| required: true | ||
| optional-deps: | ||
| description: "Optional dependencies of unit test binary (ON or OFF, default ON). If OFF, adds `-nodep` to the artifact name." | ||
| required: false | ||
| default: "ON" | ||
| runs: | ||
| using: "composite" | ||
| steps: | ||
| - name: Download built test directory | ||
| uses: actions/download-artifact@v3 | ||
| uses: actions/download-artifact@v4 | ||
| with: | ||
| name: ${{ inputs.build-artifact }} | ||
| name: build-cpp-windows-${{ inputs.artifact-pattern }}${{ inputs.optional-deps == 'OFF' && '-nodep' || ''}} | ||
| path: cpp/build-win/bin | ||
| - name: Run unit tests | ||
| shell: pwsh | ||
| run: | | ||
| cd cpp/build-win/bin | ||
| .\memilio-test.exe --gtest_output="xml:report.xml" | ||
| - name: Upload report | ||
| uses: actions/upload-artifact@v3 | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: test-cpp-win-report | ||
| name: test-cpp-win-report-${{ inputs.artifact-pattern }}${{ inputs.optional-deps == 'OFF' && '-nodep' || ''}} | ||
| path: | | ||
| cpp/build-win/bin/report.xml | ||
| retention-days: 1 |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.