Skip to content

Commit b80e4ce

Browse files
authored
Merge pull request #1913 from su2code/develop
Update master
2 parents 1b08506 + 09ba9e3 commit b80e4ce

File tree

1,013 files changed

+7572
-7895
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,013 files changed

+7572
-7895
lines changed

.github/release.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# .github/release.yml
2+
3+
changelog:
4+
exclude:
5+
labels:
6+
- 'changelog:none'
7+
categories:
8+
- title: ':rocket: Experimental Features'
9+
labels:
10+
- 'changelog:feature'
11+
- title: ':pill: Bug Fixes'
12+
labels:
13+
- 'changelog:fix'
14+
- title: ':wrench: Maintenance'
15+
labels:
16+
- 'changelog:chore'
17+
- title: 'Other Changes'
18+
labels:
19+
- "*"
20+

.github/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ staleLabel: stale
1212
markComment: >
1313
This issue has been automatically marked as stale because it has not had
1414
recent activity. It will be closed if no further activity occurs.
15-
**If this is still a relevant issue please comment on it to restart the discussion.**
15+
**If this is still a relevant issue please comment on it to restart the discussion.**
1616
Thank you for your contributions.
1717
# Comment to post when closing a stale issue. Set to `false` to disable
1818
closeComment: false

.github/workflows/regression.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- 'develop'
77
- 'master'
88
pull_request:
9-
branches:
9+
branches:
1010
- 'develop'
1111
- 'master'
1212
workflow_call:
@@ -22,7 +22,7 @@ jobs:
2222
name: Build SU2
2323
strategy:
2424
fail-fast: false
25-
matrix:
25+
matrix:
2626
config_set: [BaseMPI, ReverseMPI, ForwardMPI, BaseNoMPI, ReverseNoMPI, ForwardNoMPI, BaseOMP, ReverseOMP, ForwardOMP]
2727
include:
2828
- config_set: BaseMPI
@@ -32,7 +32,7 @@ jobs:
3232
- config_set: ForwardMPI
3333
flags: '-Denable-directdiff=true -Denable-normal=false -Denable-tests=true --warnlevel=3 --werror'
3434
- config_set: BaseNoMPI
35-
flags: '-Denable-pywrapper=true -Dwith-mpi=disabled -Denable-tests=true --warnlevel=3 --werror'
35+
flags: '-Denable-pywrapper=true -Denable-openblas=true -Dwith-mpi=disabled -Denable-tests=true --warnlevel=3 --werror'
3636
- config_set: ReverseNoMPI
3737
flags: '-Denable-autodiff=true -Denable-normal=false -Dwith-mpi=disabled -Denable-pywrapper=true -Denable-tests=true --warnlevel=3 --werror'
3838
- config_set: ForwardNoMPI
@@ -51,24 +51,24 @@ jobs:
5151
path: ccache
5252
key: ${{ matrix.config_set }}-${{ github.sha }}
5353
restore-keys: ${{ matrix.config_set }}
54-
- name: Pre Cleanup
55-
uses: docker://ghcr.io/su2code/su2/build-su2:221027-0442
54+
- name: Pre Cleanup
55+
uses: docker://ghcr.io/su2code/su2/build-su2:221224-1158
5656
with:
5757
entrypoint: /bin/rm
5858
args: -rf install install_bin.tgz src ccache ${{ matrix.config_set }}
59-
- name: Build
60-
uses: docker://ghcr.io/su2code/su2/build-su2:221027-0442
59+
- name: Build
60+
uses: docker://ghcr.io/su2code/su2/build-su2:221224-1158
6161
with:
6262
args: -b ${{github.ref}} -f "${{matrix.flags}}"
6363
- name: Compress binaries
6464
run: tar -zcvf install_bin.tgz install/bin
65-
- name: Upload Binaries
65+
- name: Upload Binaries
6666
uses: actions/upload-artifact@v3
6767
with:
6868
name: ${{ matrix.config_set }}
6969
path: install_bin.tgz
7070
- name: Post Cleanup
71-
uses: docker://ghcr.io/su2code/su2/build-su2:221027-0442
71+
uses: docker://ghcr.io/su2code/su2/build-su2:221224-1158
7272
with:
7373
entrypoint: /bin/rm
7474
args: -rf install install_bin.tgz src ccache ${{ matrix.config_set }}
@@ -78,7 +78,7 @@ jobs:
7878
needs: build
7979
strategy:
8080
fail-fast: false
81-
matrix:
81+
matrix:
8282
testscript: ['vandv.py', 'tutorials.py', 'parallel_regression.py', 'parallel_regression_AD.py', 'serial_regression.py', 'serial_regression_AD.py', 'hybrid_regression.py', 'hybrid_regression_AD.py']
8383
include:
8484
- testscript: 'vandv.py'
@@ -99,7 +99,7 @@ jobs:
9999
tag: OMP
100100
steps:
101101
- name: Pre Cleanup
102-
uses: docker://ghcr.io/su2code/su2/test-su2:220614-1237
102+
uses: docker://ghcr.io/su2code/su2/test-su2:221224-1158
103103
with:
104104
entrypoint: /bin/rm
105105
args: -rf install install_bin.tgz src ccache ${{ matrix.config_set }}
@@ -119,18 +119,18 @@ jobs:
119119
tar -zxvf install_bin.tgz
120120
ls -lah install/bin/
121121
cp -r install/bin/* $BIN_FOLDER;
122-
popd;
122+
popd;
123123
fi
124124
done
125125
chmod a+x $BIN_FOLDER/*
126126
ls -lahR $BIN_FOLDER
127127
- name: Run Tests in Container
128-
uses: docker://ghcr.io/su2code/su2/test-su2:220614-1237
128+
uses: docker://ghcr.io/su2code/su2/test-su2:221224-1158
129129
with:
130130
# -t <Tutorials-branch> -c <Testcases-branch>
131131
args: -b ${{github.ref}} -t develop -c develop -s ${{matrix.testscript}}
132132
- name: Cleanup
133-
uses: docker://ghcr.io/su2code/su2/test-su2:220614-1237
133+
uses: docker://ghcr.io/su2code/su2/test-su2:221224-1158
134134
with:
135135
entrypoint: /bin/rm
136136
args: -rf install install_bin.tgz src ccache ${{ matrix.config_set }}
@@ -150,8 +150,8 @@ jobs:
150150
- testdriver: 'test_driver_DD'
151151
tag: MPI
152152
steps:
153-
- name: Pre Cleanup
154-
uses: docker://ghcr.io/su2code/su2/test-su2:220614-1237
153+
- name: Pre Cleanup
154+
uses: docker://ghcr.io/su2code/su2/test-su2:221224-1158
155155
with:
156156
entrypoint: /bin/rm
157157
args: -rf install install_bin.tgz src ccache ${{ matrix.config_set }}
@@ -196,8 +196,8 @@ jobs:
196196
branch="${{github.ref}}"
197197
name="SU2"
198198
SRC_FOLDER="$PWD/src"
199-
mkdir -p $SRC_FOLDER
200-
cd $SRC_FOLDER
199+
mkdir -p $SRC_FOLDER
200+
cd $SRC_FOLDER
201201
git clone --recursive --depth=1 --shallow-submodules https://github.com/su2code/SU2 $name
202202
cd $name
203203
git config --add remote.origin.fetch '+refs/pull/*/merge:refs/remotes/origin/refs/pull/*/merge'
@@ -212,11 +212,11 @@ jobs:
212212
echo $PWD
213213
ls -lahR
214214
- name: Run Unit Tests
215-
uses: docker://ghcr.io/su2code/su2/test-su2:220614-1237
215+
uses: docker://ghcr.io/su2code/su2/test-su2:221224-1158
216216
with:
217217
entrypoint: install/bin/${{matrix.testdriver}}
218218
- name: Post Cleanup
219-
uses: docker://ghcr.io/su2code/su2/test-su2:220614-1237
219+
uses: docker://ghcr.io/su2code/su2/test-su2:221224-1158
220220
with:
221221
entrypoint: /bin/rm
222222
args: -rf install install_bin.tgz src ccache ${{ matrix.config_set }}

.github/workflows/release-management.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
key: ${{ matrix.os_bin }}-${{ github.sha }}
3636
restore-keys: ${{ matrix.os_bin }}
3737
- name: Build
38-
uses: docker://ghcr.io/su2code/su2/build-su2-cross:220716-1459
38+
uses: docker://ghcr.io/su2code/su2/build-su2-cross:221224-1158
3939
with:
4040
args: -b ${{ github.sha }} -f "${{matrix.flags}}"
4141
- name: Create Archive
@@ -65,4 +65,4 @@ jobs:
6565
asset_path: ${{matrix.os_bin}}.zip
6666
asset_name: SU2-${{ steps.update_release.outputs.tagname }}-${{matrix.os_bin}}.zip
6767
asset_content_type: application/zip
68-
68+

AUTHORS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ in collaboration with the following main contributors and research teams:
4343
Copyright holders might be the individual person or their respective employer. If no real name is available, the Github user name is listed.
4444

4545
```
46+
Aidan Jungo
4647
Akshay.K.R
4748
Alejandro
4849
Alessandro Gastaldi
@@ -90,6 +91,7 @@ Jessie Lauzon
9091
João Loureiro
9192
Johannes Blühdorn
9293
JonathanSmith1936
94+
Josy P. Pullockara
9395
Kedar Naik
9496
LaSerpe
9597
Lennaert Tol
@@ -121,13 +123,15 @@ Scott Imlay
121123
Steffen Schotthöfer
122124
Steven Endres
123125
Sunoh Kang
126+
T. N. Venkatesh
124127
Teus van der Stelt
125128
Thomas D. Economon
126129
Tim Albring
127130
TobiKattmann
128131
Trent Lukaczyk
129132
VivaanKhatri
130133
Wally Maier
134+
Y. Chandukrishna
131135
Zan Xu
132136
aaronyicongfu
133137
aeroamit

0 commit comments

Comments
 (0)