Move smoke test to reusable workflow

This commit is contained in:
Brendon Smith 2024-10-04 18:20:25 -04:00
parent 3a538c1fe8
commit 11e5cd5789
No known key found for this signature in database
2 changed files with 8 additions and 12 deletions

View file

@ -49,3 +49,7 @@ jobs:
docker push $IMAGE
docker push $IMAGE_MAJOR
docker push $IMAGE_MAJOR_MINOR
smoke-test:
needs:
- build-and-push
uses: ./.github/workflows/reusable-smoke-test.yml

View file

@ -1,12 +1,9 @@
---
name: 🧪
name: ♻️ 🧪
on: # yamllint disable-line rule:truthy
pull_request:
workflow_run:
workflows: [🏗️]
types: [completed]
workflow_call:
env:
devpi-password: abcd1234
@ -30,9 +27,6 @@ env:
jobs:
fail-fast:
if: >-
github.event_name == 'pull_request' ||
github.event.workflow_run.conclusion == 'success'
strategy:
matrix:
@ -44,7 +38,7 @@ jobs:
steps:
- name: Check out the action locally
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: test
- name: Fail-fast in unsupported environments
@ -58,9 +52,7 @@ jobs:
exit 1
smoke-test:
if: >-
github.event_name == 'pull_request' ||
github.event.workflow_run.conclusion == 'success'
runs-on: ubuntu-latest
services: