Skip to content

Commit

Permalink
Fix nightly by calling the build workflow
Browse files Browse the repository at this point in the history
This is the minimal fix needed. To transform the nightly CI to fully
leverage the reusable workflows, there is a need for more thinking.

[noissue]
  • Loading branch information
mdellweg committed Nov 15, 2023
1 parent 20bf8c0 commit 4737caa
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions templates/github/.github/workflows/nightly.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ concurrency:
cancel-in-progress: true

jobs:
build:
uses: ./.github/workflows/build.yml

test:
runs-on: ubuntu-latest
needs: build

strategy:
fail-fast: false
Expand Down Expand Up @@ -56,6 +60,11 @@ jobs:
steps:
{{ checkout() | indent(6) }}

- uses: actions/download-artifact@v3
with:
name: plugin_package
path: dist/

{{ setup_python() | indent(6) }}

{{ install_httpie() | indent(6) }}
Expand Down Expand Up @@ -143,6 +152,11 @@ jobs:
steps:
{{ checkout() | indent(6) }}

- uses: actions/download-artifact@v3
with:
name: plugin_package
path: dist/

{{ setup_python() | indent(6) }}

{{ setup_ruby() | indent(6) }}
Expand Down

0 comments on commit 4737caa

Please sign in to comment.