Added FEFilesystem to support old compilers that rely on std::experim… #512
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
| name: CI - Windows Push | |
| on: | |
| push: | |
| branches: | |
| - 'develop' | |
| workflow_dispatch: | |
| inputs: | |
| runTests: | |
| description: "Run tests?" | |
| required: false | |
| type: boolean | |
| default: false | |
| build-plugins: | |
| description: "Build all plugins?" | |
| type: boolean | |
| required: false | |
| dev-release: | |
| description: "Do a dev release?" | |
| type: boolean | |
| required: false | |
| permissions: | |
| id-token: write # This is required for requesting the JWT | |
| contents: read # This is required for actions/checkout | |
| jobs: | |
| call_workflow: | |
| uses: febiosoftware/febio-workflows/.github/workflows/windows-reusable.yml@develop | |
| with: | |
| runTests: ${{ (github.event_name == 'workflow_dispatch' && inputs.runTests) || (github.event_name == 'push' && contains(fromJSON('["develop"]'), github.ref_name)) }} | |
| build-plugins: ${{ (github.event_name == 'workflow_dispatch' && inputs.build-plugins) || github.event_name == 'push' }} | |
| dev-release: ${{ (github.event_name == 'workflow_dispatch' && inputs.dev-release) || github.event_name == 'push' }} | |
| package-name: febio4 | |
| package-sdk: true | |
| publish: true | |
| secrets: inherit |