forked from OpenMDAO/OpenMDAO
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #71 from swryan/poem_integ
Simulate PR 3214
- Loading branch information
Showing
15 changed files
with
203 additions
and
33 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
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 |
---|---|---|
|
@@ -56,6 +56,7 @@ jobs: | |
PETSc: True | ||
PYOPTSPARSE: true | ||
SNOPT: true | ||
BANDIT: true | ||
BUILD_DOCS: true | ||
|
||
# test latest versions on ubuntu | ||
|
@@ -352,6 +353,28 @@ jobs: | |
grep '^0 unique deprecation warnings' $RPT_FILE | ||
- name: Scan for security issues | ||
if: matrix.BANDIT | ||
id: bandit | ||
continue-on-error: true | ||
run: | | ||
python -m pip install bandit | ||
echo "=============================================================" | ||
echo "Run bandit scan for high/medium severity issues" | ||
echo "=============================================================" | ||
cd ${{ github.workspace }} | ||
python -m bandit -c bandit.yml -ll -r openmdao | ||
- name: Slack security issue | ||
if: steps.bandit.outcome == 'failure' | ||
uses: act10ns/[email protected] | ||
with: | ||
webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
status: 'warning' | ||
message: | ||
Security issue found on `${{ matrix.NAME }}` build. | ||
${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
|
||
- name: Slack env change | ||
if: steps.env_info.outputs.errors != '' | ||
uses: act10ns/[email protected] | ||
|
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 |
---|---|---|
|
@@ -726,7 +726,6 @@ jobs: | |
- name: Scan for security issues | ||
if: matrix.BANDIT | ||
id: bandit | ||
continue-on-error: true | ||
run: | | ||
python -m pip install bandit | ||
echo "=============================================================" | ||
|
@@ -735,16 +734,6 @@ jobs: | |
cd ${{ github.workspace }} | ||
python -m bandit -c bandit.yml -ll -r openmdao | ||
- name: Slack security issue | ||
if: steps.bandit.outcome == 'failure' | ||
uses: act10ns/[email protected] | ||
with: | ||
webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
status: ${{ steps.bandit.outcome }} | ||
message: | ||
Security issue found on `${{ matrix.NAME }}` build. | ||
${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
|
||
coveralls: | ||
name: Finish coverage | ||
|
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,3 +1,3 @@ | ||
__version__ = '3.32.1-dev' | ||
__version__ = '3.33.1-dev' | ||
|
||
INF_BOUND = 1.0E30 |
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
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
Oops, something went wrong.