From 17d5e37a3bf50850fe7aebd0a47ca5c6144b758b Mon Sep 17 00:00:00 2001 From: Remi Rousselet Date: Tue, 24 Dec 2024 11:14:06 +0100 Subject: [PATCH] CI (#3890) --- .github/workflows/build.yml | 9 +++------ .github/workflows/cleanup.yml | 19 ------------------- 2 files changed, 3 insertions(+), 25 deletions(-) delete mode 100644 .github/workflows/cleanup.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ab80d18f1..531e31864 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,7 +52,7 @@ jobs: # - packages/riverpod_graph # TODO(rousselGit) blocked by https://github.com/invertase/dart_custom_lint/issues/16 # - packages/riverpod_lint_flutter_test - - website + # - website steps: - uses: actions/checkout@v3.1.0 @@ -67,11 +67,8 @@ jobs: run: echo "PUB_CACHE="$HOME/.pub-cache"" >> $GITHUB_ENV - name: Install dependencies run: flutter pub get - - name: Install dependencies (integration/buid.yaml) - run: | - if test -d "integration/build_yaml"; then - flutter pub get integration/build_yaml - fi + - if: matrix.package_path == 'packages/riverpod_generator' + run: rm -rf integration - name: Install dependencies (website/third-party) run: | if test -d "third-party"; then diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml deleted file mode 100644 index faa337b61..000000000 --- a/.github/workflows/cleanup.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Cleanup Workflow - -on: - workflow_run: - workflows: - - "build" - - "changelog" - - check_generation - - riverpod_lint - types: - - completed - -jobs: - cleanup: - runs-on: ubuntu-latest - - steps: - - name: Cleanup - run: echo "This is the cleanup job."