From b5da120805c818d6db057ad841239eb4e8e11ea9 Mon Sep 17 00:00:00 2001 From: filipefurtad0 Date: Sun, 6 Nov 2022 17:25:23 +0000 Subject: [PATCH] Splits engines Keeps test-the-rest specs running without Knapsack --- .github/workflows/build.yml | 62 +----------------- .github/workflows/build_engines.yml | 97 +++++++++++++++++++++++++++++ 2 files changed, 99 insertions(+), 60 deletions(-) create mode 100644 .github/workflows/build_engines.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a62b922b77..8e1c604057 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build test-the-rest +name: test-the-rest (non-Knapsack) on: workflow_dispatch: @@ -9,6 +9,7 @@ on: env: DISABLE_KNAPSACK: true + DISABLE_KNAPSACK_PRO: false TIMEZONE: UTC COVERAGE: true RAILS_ENV: test @@ -17,65 +18,6 @@ permissions: contents: read jobs: - rspec: - runs-on: ubuntu-20.04 - services: - postgres: - image: postgres:10 - ports: ["5432:5432"] - options: >- - --health-cmd pg_isready - --health-interval 10s - --health-timeout 5s - --health-retries 5 - env: - POSTGRES_DB: open_food_network_test - POSTGRES_USER: ofn - POSTGRES_PASSWORD: f00d - strategy: - matrix: - specs: - - "spec/lib" - - "spec/migrations" - - "spec/serializers" - - "engines/*/spec" - fail-fast: false - steps: - - uses: actions/checkout@v3 - - - name: Setup redis - uses: supercharge/redis-github-action@1.4.0 - with: - redis-version: 6 - - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - bundler-cache: true # runs 'bundle install' and caches installed gems automatically - - - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Install JS dependencies - run: yarn install --frozen-lockfile - - - name: Set up database - run: | - bundle exec rake db:create - bundle exec rake db:schema:load - - name: Run tests - run: bundle exec rspec --profile -- ${{ matrix.specs }} - - - name: Archive failed tests screenshots - if: failure() - uses: actions/upload-artifact@v3 - with: - name: failed-tests-screenshots - path: tmp/capybara/screenshots/*.png - retention-days: 7 - if-no-files-found: ignore - test-the-rest: runs-on: ubuntu-20.04 services: diff --git a/.github/workflows/build_engines.yml b/.github/workflows/build_engines.yml new file mode 100644 index 0000000000..0b988c7624 --- /dev/null +++ b/.github/workflows/build_engines.yml @@ -0,0 +1,97 @@ +name: Build Knapsack Engines + +on: + workflow_dispatch: + push: + branches-ignore: + - 'dependabot/**' + pull_request: + +env: + DISABLE_KNAPSACK: true + DISABLE_KNAPSACK_PRO: false + TIMEZONE: UTC + COVERAGE: true + RAILS_ENV: test + +permissions: + contents: read + +jobs: + rspec: + runs-on: ubuntu-20.04 + services: + postgres: + image: postgres:10 + ports: ["5432:5432"] + options: >- + --health-cmd pg_isready + --health-interval 10s + --health-timeout 5s + --health-retries 5 + env: + POSTGRES_DB: open_food_network_test + POSTGRES_USER: ofn + POSTGRES_PASSWORD: f00d + strategy: + fail-fast: false + matrix: + # [n] - where the n is a number of parallel jobs you want to run your tests on. + # Use a higher number if you have slow tests to split them between more parallel jobs. + # Remember to update the value of the `ci_node_index` below to (0..n-1). + ci_node_total: [10] + # Indexes for parallel jobs (starting from zero). + # E.g. use [0, 1] for 2 parallel jobs, [0, 1, 2] for 3 parallel jobs, etc. + ci_node_index: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] + steps: + - uses: actions/checkout@v3 + + - name: Setup redis + uses: supercharge/redis-github-action@1.4.0 + with: + redis-version: 6 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + + - uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Install JS dependencies + run: yarn install --frozen-lockfile + + - name: Set up database + run: | + bundle exec rake db:create + bundle exec rake db:schema:load + + - name: Run tests + + env: + KNAPSACK_PRO_TEST_SUITE_TOKEN_RSPEC: 09476e2ce491c12083df62768667c674 + KNAPSACK_PRO_CI_NODE_TOTAL: ${{ matrix.ci_node_total }} + KNAPSACK_PRO_CI_NODE_INDEX: ${{ matrix.ci_node_index }} + KNAPSACK_PRO_LOG_LEVEL: info + # if you use Knapsack Pro Queue Mode you must set below env variable + # to be able to retry CI build and run previously recorded tests + # https://github.com/KnapsackPro/knapsack_pro-ruby#knapsack_pro_fixed_queue_split-remember-queue-split-on-retry-ci-node + KNAPSACK_PRO_FIXED_QUEUE_SPLIT: true + # RSpec split test files by test examples feature - it's optional + # https://knapsackpro.com/faq/question/how-to-split-slow-rspec-test-files-by-test-examples-by-individual-it + #KNAPSACK_PRO_RSPEC_SPLIT_BY_TEST_EXAMPLES: true + KNAPSACK_PRO_TEST_FILE_PATTERN: "{spec/lib/**/*_spec.rb, spec/migrations/**/*_spec.rb, spec/serializers/**/*_spec.rb, engines/**/*_spec.rb}" + + run: | + bundle exec rake knapsack_pro:rspec + + - name: Archive failed tests screenshots + if: failure() + uses: actions/upload-artifact@v3 + with: + name: failed-tests-screenshots + path: tmp/capybara/screenshots/*.png + retention-days: 7 + if-no-files-found: ignore