Skip to content
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

Run github actions on mdolab docker images #434

Closed
wants to merge 12 commits into from
18 changes: 18 additions & 0 deletions .github/azure-pipelines.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
trigger:
- main

pr:
- main

resources:
repositories:
- repository: azure_template
type: github
name: mdolab/.github
endpoint: mdolab

extends:
template: azure/azure_template.yaml@azure_template
parameters:
REPO_NAME: OpenAeroStruct
COVERAGE: true
3 changes: 3 additions & 0 deletions .github/build_real.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
set -e
pip install .[testing,mphys]
4 changes: 4 additions & 0 deletions .github/test_real.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash
set -e

testflo -n 2 -v openaerostruct --coverage --coverpkg openaerostruct
184 changes: 0 additions & 184 deletions .github/workflows/oas.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: OAS release
eirikurj marked this conversation as resolved.
Show resolved Hide resolved

# Pushes any new releases to pypi

on:
push:
branches:
- main
tags:
- v*.*.*


jobs:
pypi:
uses: mdolab/.github/.github/workflows/pypi.yaml@main
secrets: inherit