Weekly global Workflow Linting and Tests #27
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
name: Weekly global Workflow Linting and Tests | |
on: | |
schedule: | |
# Run at 1am every Monday | |
- cron: '0 1 * * 1' | |
env: | |
GALAXY_FORK: galaxyproject | |
GALAXY_BRANCH: release_22.05 | |
MAX_CHUNKS: 40 | |
jobs: | |
setup: | |
name: Setup cache and determine changed repositories | |
if: github.repository_owner == 'RECETOX' | |
runs-on: ubuntu-latest | |
outputs: | |
galaxy-head-sha: ${{ steps.get-galaxy-sha.outputs.galaxy-head-sha }} | |
fork: ${{ steps.get-fork-branch.outputs.fork }} | |
branch: ${{ steps.get-fork-branch.outputs.branch }} | |
repository-list: ${{ steps.discover.outputs.repository-list }} | |
chunk-count: ${{ steps.discover.outputs.chunk-count }} | |
chunk-list: ${{ steps.discover.outputs.chunk-list }} | |
strategy: | |
matrix: | |
python-version: ['3.7'] | |
steps: | |
- name: Set galaxy fork and branch | |
id: get-fork-branch | |
run: | | |
TMP="${{ github.event.client_payload.slash_command.args.named.fork }}" | |
echo "fork=${TMP:-$GALAXY_FORK}" >> $GITHUB_OUTPUT | |
TMP="${{ github.event.client_payload.slash_command.args.named.branch }}" | |
echo "branch=${TMP:-$GALAXY_BRANCH}" >> $GITHUB_OUTPUT | |
- name: Determine latest commit in the Galaxy repo | |
id: get-galaxy-sha | |
run: echo "galaxy-head-sha=$(git ls-remote https://github.com/${{ steps.get-fork-branch.outputs.fork }}/galaxy refs/heads/${{ steps.get-fork-branch.outputs.branch }} | cut -f1)" >> $GITHUB_OUTPUT | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache .cache/pip | |
uses: actions/cache@v3 | |
id: cache-pip | |
with: | |
path: ~/.cache/pip | |
key: pip_cache_py_${{ matrix.python-version }}_gxy_${{ steps.get-galaxy-sha.outputs.galaxy-head-sha }} | |
# Install the `wheel` package so that when installing other packages which | |
# are not available as wheels, pip will build a wheel for them, which can be cached. | |
- name: Install wheel | |
run: pip install wheel | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Fake a Planemo run to update cache and determine commit range, repositories, and chunks | |
uses: galaxyproject/planemo-ci-action@v1 | |
id: discover | |
with: | |
workflows: true | |
create-cache: ${{ steps.cache-pip.outputs.cache-hit != 'true' || steps.cache-planemo.outputs.cache-hit != 'true' }} | |
galaxy-fork: ${{ steps.get-fork-branch.outputs.fork }} | |
galaxy-branch: ${{ steps.get-fork-branch.outputs.branch }} | |
max-chunks: ${{ env.MAX_CHUNKS }} | |
python-version: ${{ matrix.python-version }} | |
- name: Show repository list | |
run: echo '${{ steps.discover.outputs.repository-list }}' | |
- name: Show chunks | |
run: | | |
echo 'Using ${{ steps.discover.outputs.chunk-count }} chunks (${{ steps.discover.outputs.chunk-list }})' | |
# Planemo lint the workflows | |
lint: | |
name: Lint workflows | |
needs: setup | |
if: needs.setup.outputs.repository-list != '' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.7'] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache .cache/pip | |
uses: actions/cache@v3 | |
id: cache-pip | |
with: | |
path: ~/.cache/pip | |
key: pip_cache_py_${{ matrix.python-version }}_gxy_${{ needs.setup.outputs.galaxy-head-sha }} | |
- name: Install wheel | |
run: pip install wheel | |
- name: Planemo lint workflows | |
uses: galaxyproject/planemo-ci-action@v1 | |
with: | |
mode: lint | |
workflows: true | |
repository-list: "${{ needs.setup.outputs.repository-list }}" | |
test: | |
name: Test workflows | |
# This job runs on Linux | |
runs-on: ubuntu-latest | |
needs: setup | |
if: ${{ needs.setup.outputs.repository-list != '' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
chunk: ${{ fromJson(needs.setup.outputs.chunk-list) }} | |
python-version: ['3.7'] | |
services: | |
postgres: | |
image: postgres:11 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: postgres | |
ports: | |
- 5432:5432 | |
steps: | |
# checkout the repository | |
# and use it as the current working directory | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache .cache/pip | |
uses: actions/cache@v3 | |
id: cache-pip | |
with: | |
path: ~/.cache/pip | |
key: pip_cache_py_${{ matrix.python-version }}_gxy_${{ needs.setup.outputs.galaxy-head-sha }} | |
- name: Planemo test workflows | |
uses: galaxyproject/planemo-ci-action@v1 | |
id: test-workflows | |
with: | |
mode: test | |
workflows: true | |
setup-cvmfs: true | |
repository-list: ${{ needs.setup.outputs.repository-list }} | |
galaxy-fork: ${{ needs.setup.outputs.fork }} | |
galaxy-branch: ${{ needs.setup.outputs.branch }} | |
chunk: ${{ matrix.chunk }} | |
chunk-count: ${{ needs.setup.outputs.chunk-count }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: 'Workflow test output ${{ matrix.chunk }}' | |
path: upload | |
# - combine the results of the test chunks (which will never fail due | |
# to `|| true`) and create a global test report as json and html which | |
# is provided as artifact | |
# - check if any test actually failed (by lookup in the combined json) | |
# and fail this step if this is the case | |
combine_outputs: | |
name: Combine chunked test results | |
needs: [setup, test] | |
strategy: | |
matrix: | |
python-version: ['3.7'] | |
# This job runs on Linux | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
path: artifacts | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache .cache/pip | |
uses: actions/cache@v3 | |
id: cache-pip | |
with: | |
path: ~/.cache/pip | |
key: pip_cache_py_${{ matrix.python-version }}_gxy_${{ needs.setup.outputs.galaxy-head-sha }} | |
- name: Combine outputs | |
uses: galaxyproject/planemo-ci-action@v1 | |
id: combine | |
with: | |
mode: combine | |
html-report: true | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: 'All workflow test results' | |
path: upload | |
- name: Check outputs | |
uses: galaxyproject/planemo-ci-action@v1 | |
id: check | |
with: | |
mode: check |