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

Azure Pipelines #39

Merged
merged 2 commits into from
Feb 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/azure-pipelines.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
trigger:
- master

pr:
- master

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

extends:
template: azure/azure_template.yaml@azure_template
parameters:
REPO_NAME: pyhyp
GCC_CONFIG: config/defaults/config.LINUX_GFORTRAN_OPENMPI.mk
INTEL_CONFIG: config/defaults/config.LINUX_INTEL_OPENMPI.mk
5 changes: 5 additions & 0 deletions .github/build_real.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
set -e
cp $CONFIG_FILE config/config.mk
make
pip install .
5 changes: 5 additions & 0 deletions .github/test_real.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
set -e
testflo . -v -n 1
cd examples
ls -l */*.cgns
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# pyHyp
[![Build Status](https://travis-ci.com/mdolab/pyhyp.svg?branch=master)](https://travis-ci.com/mdolab/pyhyp)
[![Build Status](https://dev.azure.com/mdolab/Public/_apis/build/status/mdolab.pyhyp?branchName=master)](https://dev.azure.com/mdolab/Public/_build/latest?definitionId=13&branchName=master)
[![Documentation Status](https://readthedocs.com/projects/mdolab-pyhyp/badge/?version=latest)](https://mdolab-pyhyp.readthedocs-hosted.com/en/latest)

pyHyp uses hyperbolic volume mesh marching schemes to extrude structured surface meshes into volume meshes.
Expand Down