From 44beefb12dbb45836d8609713ed12e0315eb9577 Mon Sep 17 00:00:00 2001 From: Chong Shen Ng Date: Tue, 1 Oct 2024 13:57:29 +0100 Subject: [PATCH] ci(*:skip) Enable SuperExec CI from fork (#4274) --- .github/workflows/e2e.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index a7c099d8101f..355037668f7f 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -82,6 +82,14 @@ jobs: with: python-version: ${{ matrix.python-version }} poetry-skip: 'true' + - name: Install Flower from repo + if: ${{ github.repository != 'adap/flower' || github.event.pull_request.head.repo.fork || github.actor == 'dependabot[bot]' }} + run: | + if [[ "${{ matrix.engine }}" == "simulation-engine" ]]; then + python -m pip install ".[simulation]" + else + python -m pip install . + fi - name: Download and install Flower wheel from artifact store if: ${{ github.repository == 'adap/flower' && !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }} run: |