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
32 changes: 32 additions & 0 deletions .github/azure-pipelines.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
trigger:
branches:
include:
- main
tags:
include:
- v*.*.*

pr:
- main

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

stages:
- template: azure/azure_template.yaml@azure_template
parameters:
REPO_NAME: OpenAeroStruct
COVERAGE: true

- stage:
dependsOn:
- Test_Real
- Style
displayName: PyPI
condition: and(succeeded(), contains(variables['build.sourceBranch'], 'tags'))
jobs:
- template: azure/azure_pypi.yaml@azure_template
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
186 changes: 0 additions & 186 deletions .github/workflows/oas.yml

This file was deleted.

Loading