Skip to content

Commit

Permalink
deactivate acceptance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rtib committed Jun 28, 2023
1 parent 23a1169 commit 78996e9
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,37 +65,37 @@ jobs:
- name: Spec tests
run: bundle exec rake parallel_spec

acceptance:
needs:
- setup_matrix
- spec
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.setup_matrix.outputs.extended_matrix) }}

name: Litmus tests Cassandra ${{ matrix.vars.release }} on ${{ matrix.platforms.label }} with ${{ matrix.collection }}
steps:
- uses: actions/checkout@v2

- name: setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7

- name: Prepare environment
run: |
bundle config set --local with 'system_tests'
bundle install
- name: Provision test environment
run: "bundle exec rake 'litmus:provision[${{ matrix.platforms.provider }},${{ matrix.platforms.image }},{ release: ${{ matrix.vars.release }} }]'"

- name: Install Agent
run: bundle exec rake 'litmus:install_agent[${{ matrix.collection }}]'

- name: Install Module
run: bundle exec rake 'litmus:install_module'

- name: Running acceptance tests
run: bundle exec rake 'litmus:acceptance:parallel'
# acceptance:
# needs:
# - setup_matrix
# - spec
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix: ${{ fromJson(needs.setup_matrix.outputs.extended_matrix) }}

# name: Litmus tests Cassandra ${{ matrix.vars.release }} on ${{ matrix.platforms.label }} with ${{ matrix.collection }}
# steps:
# - uses: actions/checkout@v2

# - name: setup ruby
# uses: ruby/setup-ruby@v1
# with:
# ruby-version: 2.7

# - name: Prepare environment
# run: |
# bundle config set --local with 'system_tests'
# bundle install

# - name: Provision test environment
# run: "bundle exec rake 'litmus:provision[${{ matrix.platforms.provider }},${{ matrix.platforms.image }},{ release: ${{ matrix.vars.release }} }]'"

# - name: Install Agent
# run: bundle exec rake 'litmus:install_agent[${{ matrix.collection }}]'

# - name: Install Module
# run: bundle exec rake 'litmus:install_module'

# - name: Running acceptance tests
# run: bundle exec rake 'litmus:acceptance:parallel'

0 comments on commit 78996e9

Please sign in to comment.