Skip to content

Commit

Permalink
Remove test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jolelievre committed Nov 7, 2024
1 parent 0f998da commit 76dcad3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 63 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/build.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/nose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,30 +16,3 @@ jobs:
run: pip install -r requirements.txt
- name: Run tests
run: nosetests

get_json_versions:
runs-on: ubuntu-latest
steps:
# Fetch versions to work for images
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- id: set-versions
run: echo "::set-output name=versions::$(./get_json_versions.py)"

outputs:
versions: ${{ steps.set-versions.outputs.versions }}

build_images:
runs-on: ubuntu-latest
needs: get_json_versions
strategy:
fail-fast: false
matrix:
ps-version: ${{ fromJson(needs.get_json_versions.outputs.versions) }}
steps:
- uses: actions/checkout@v2
- name: Build Docker image
run: docker build images/${version}
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
run: ./generate_tags.sh
working-directory: base

- name: Base Images > Docker Build Tags without pushing
- name: Base Images > Docker Build Tags
run: ./docker_tags.sh
if: ${{ github.event_name != 'push' || github.ref != 'refs/heads/master' || steps.changes.outputs.base != 'true' }}
if: ${{ github.event_name == 'pull_request' }}
working-directory: base

- name: Base Images > Docker Build & Force Push
Expand Down

0 comments on commit 76dcad3

Please sign in to comment.