Skip to content

Commit f13a001

Browse files
Merge branch 'develop'
2 parents 13bb18c + 9a6aa6c commit f13a001

53 files changed

Lines changed: 36619 additions & 423 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: "\U0001F41B Bug report"
3+
about: Report bugs
4+
title: "\U0001F41B Bug report | [Bug Title]"
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Description:**
11+
A clear and concise description of what the bug is.
12+
13+
**Version:**
14+
15+
**Steps To Reproduce:**
16+
1. Go to '...'
17+
2. Click on '....'
18+
3. Scroll down to '....'
19+
4. See error
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: "\U0001F4D3 Documentation request"
3+
about: Request updates to missing/outdated documentation or other documentation issues.
4+
title: "\U0001F4D3 Documentation request | [Request Title]"
5+
labels: documentation
6+
assignees: ''
7+
8+
---
9+
10+
**Document & Version:**
11+
12+
**Section:**
13+
14+
**Request/Report:**
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: "\U0001F64F Feature request"
3+
about: Request a feature for this project
4+
title: "\U0001F64F Feature request | [Request Title]"
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Request Description:**
11+
A clear and concise description of what the problem is. Ex. Request to add new plotfile variable for [...]
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI - Linux Pull Request
2+
on:
3+
pull_request_target:
4+
types:
5+
- opened
6+
- edited
7+
- synchronize
8+
branches:
9+
- develop
10+
permissions:
11+
id-token: write # This is required for requesting the JWT
12+
contents: read # This is required for actions/checkout
13+
jobs:
14+
call_workflow:
15+
uses: febiosoftware/febio-workflows/.github/workflows/linux-reusable.yml@develop
16+
with:
17+
package-name: febiowarp
18+
requires-sdk: true
19+
plugin: true
20+
publish: false
21+
secrets: inherit

.github/workflows/linux-push.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI - Linux Push
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- master
8+
9+
permissions:
10+
id-token: write # This is required for requesting the JWT
11+
contents: read # This is required for actions/checkout
12+
jobs:
13+
call_workflow:
14+
uses: febiosoftware/febio-workflows/.github/workflows/linux-reusable.yml@develop
15+
with:
16+
package-name: febiowarp
17+
requires-sdk: true
18+
plugin: true
19+
publish: true
20+
secrets: inherit
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI - MacOS Pull Request
2+
on:
3+
pull_request_target:
4+
types:
5+
- opened
6+
- edited
7+
- synchronize
8+
branches:
9+
- develop
10+
permissions:
11+
id-token: write # This is required for requesting the JWT
12+
contents: read # This is required for actions/checkout
13+
jobs:
14+
call_workflow:
15+
uses: febiosoftware/febio-workflows/.github/workflows/macos-reusable.yml@develop
16+
with:
17+
package-name: febiowarp
18+
requires-sdk: true
19+
plugin: true
20+
publish: false
21+
secrets: inherit

.github/workflows/macos-push.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI - MacOS Push
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- master
8+
permissions:
9+
id-token: write # This is required for requesting the JWT
10+
contents: read # This is required for actions/checkout
11+
12+
jobs:
13+
call_workflow:
14+
uses: febiosoftware/febio-workflows/.github/workflows/macos-reusable.yml@develop
15+
with:
16+
package-name: febiowarp
17+
requires-sdk: true
18+
plugin: true
19+
publish: true
20+
secrets: inherit
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI - Windows Pull Request
2+
on:
3+
pull_request_target:
4+
types:
5+
- opened
6+
- edited
7+
- synchronize
8+
branches:
9+
- develop
10+
permissions:
11+
id-token: write # This is required for requesting the JWT
12+
contents: read # This is required for actions/checkout
13+
jobs:
14+
call_workflow:
15+
uses: febiosoftware/febio-workflows/.github/workflows/windows-reusable.yml@develop
16+
with:
17+
package-name: febiowarp
18+
requires-sdk: true
19+
plugin: true
20+
publish: false
21+
secrets: inherit

.github/workflows/windows-push.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI - Windows Push
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- master
8+
9+
permissions:
10+
id-token: write # This is required for requesting the JWT
11+
contents: read # This is required for actions/checkout
12+
jobs:
13+
call_workflow:
14+
uses: febiosoftware/febio-workflows/.github/workflows/windows-reusable.yml@develop
15+
with:
16+
package-name: febiowarp
17+
requires-sdk: true
18+
plugin: true
19+
publish: true
20+
secrets: inherit

.gitignore

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*.user
1313
*.userosscache
1414
*.sln.docstates
15-
cmbuild/
1615

1716
# User-specific files (MonoDevelop/Xamarin Studio)
1817
*.userprefs
@@ -110,6 +109,8 @@ ipch/
110109
*.cachefile
111110
*.VC.db
112111
*.VC.VC.opendb
112+
*.vcxproj*
113+
[Bb]uild/*.sln
113114

114115
# Visual Studio profiler
115116
*.psess
@@ -386,8 +387,16 @@ MigrationBackup/
386387
*.out
387388
*.app
388389

390+
# CMake user files
391+
[Cc][Mm]ake[Ff]iles
392+
cmbuild/
393+
[Cc][Mm]ake[Cc]ache.txt
394+
[Cc][Mm]ake_[Ii]nstall.cmake
395+
389396
# miscellaneous
390397
Documentation/Doxygen/doc
391398
VS2019/
392399
vs22/
393-
cmbuild/
400+
401+
.vscode
402+
cbuild

0 commit comments

Comments
 (0)