Skip to content

Commit 61558fd

Browse files
committed
Merge remote-tracking branch 'origin/develop' into develop-1.1
2 parents 9575021 + 04a6abb commit 61558fd

File tree

4 files changed

+38
-21
lines changed

4 files changed

+38
-21
lines changed

.github/workflows/build-docs.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build OpenAPI docs
2+
on:
3+
- push
4+
# - pull_request
5+
jobs:
6+
docs-build:
7+
runs-on: ubuntu-latest
8+
# env:
9+
# TRAVIS_BRANCH: ${{ github.event.number }}
10+
# a trick that builds docs for PRs (with PR number). Does not work for PRs from forks.
11+
steps:
12+
- name: Setup Node.js environment
13+
uses: actions/[email protected]
14+
with:
15+
node-version: 14.x
16+
# Comes with npm 6. For newer Node, encountered: https://github.com/npm/cli/issues/3359
17+
- run: npm install -g @redocly/openapi-cli && npm install -g redoc-cli
18+
- run: npm install -g gh-openapi-docs
19+
- name: Check out repository code
20+
uses: actions/checkout@v2
21+
- run: gh-openapi-docs
22+
- name: Deploy 🚀
23+
uses: JamesIves/[email protected]
24+
with:
25+
branch: gh-pages
26+
folder: .

.travis.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="https://www.ga4gh.org/wp-content/themes/ga4gh-theme/gfx/GA-logo-horizontal-tag-RGB.svg" alt="GA4GH Logo" style="width: 400px;"/>
1+
<img src="https://w3id.org/ga4gh/ga4gh-logo.svg" alt="GA4GH Logo" style="width: 400px;"/>
22

33
Task Execution Service (TES) API
44
======================================
@@ -47,6 +47,16 @@ TES Compliant Implementations
4747
- [TESK](https://github.com/EMBL-EBI-TSI/TESK)
4848
- [tes-azure](https://github.com/microsoft/tes-azure)
4949

50+
### Compatibility Matrix
51+
52+
> Compatibility is assumed based on available documentation and limited tests performed on latest versions of implementations available as of December 2020.
53+
54+
| | cwl-tes | Cromwell | Nextflow |
55+
| ----------- | ------------- | --------- | ---------|
56+
| **Funnel** | [Compatible](https://github.com/ohsu-comp-bio/cwl-tes) | Compatible | [Compatible](https://www.nextflow.io/docs/latest/executor.html#ga4gh-tes) |
57+
| **TESK** | [Compatible](https://github.com/ohsu-comp-bio/cwl-tes/pull/25) | [Compatible](https://cromwell.readthedocs.io/en/stable/backends/TES/) | [Compatible](https://github.com/EMBL-EBI-TSI/tesk-core/pull/19) |
58+
| **tes-azure** | Not tested | [Potentially compatible](https://github.com/microsoft/tes-azure/blob/master/docs/USAGE.md#cromwell) | Not tested |
59+
5060

5161
TES Service Examples
5262
------------------------------

openapi/task_execution_service.openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ info:
33
title: Task Execution Service
44
version: 1.0.0
55
x-logo:
6-
url: 'https://www.ga4gh.org/wp-content/themes/ga4gh-theme/gfx/GA-logo-horizontal-tag-RGB.svg'
6+
url: 'https://w3id.org/ga4gh/ga4gh-logo.svg'
77
description: >
88
## Executive Summary
99

0 commit comments

Comments
 (0)