Skip to content

Commit

Permalink
Don't run remote tests for now
Browse files Browse the repository at this point in the history
  • Loading branch information
twalpole committed Apr 14, 2024
1 parent a46d7b7 commit 0480f90
Showing 1 changed file with 39 additions and 39 deletions.
78 changes: 39 additions & 39 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,45 +90,45 @@ jobs:
- name: Run tests
run: bundle exec rake ${{ matrix.task }}

remote_chrome:
runs-on: ubuntu-latest

strategy:
matrix:
ruby: ["3.0"]

steps:
- uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run remote Chrome
run: docker-compose up -d selenium_chrome
- name: Run specs
run: bundle exec rake spec_chrome_remote

remote_firefox:
runs-on: ubuntu-latest

strategy:
matrix:
ruby: ["3.1"]

steps:
- uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run remote Firefox
run: docker-compose up -d selenium_firefox
- name: Run specs
run: bundle exec rake spec_firefox_remote
# remote_chrome:
# runs-on: ubuntu-latest

# strategy:
# matrix:
# ruby: ["3.0"]

# steps:
# - uses: actions/checkout@v4

# - name: Set up Ruby
# uses: ruby/setup-ruby@v1
# with:
# ruby-version: ${{ matrix.ruby }}
# bundler-cache: true
# - name: Run remote Chrome
# run: docker-compose up -d selenium_chrome
# - name: Run specs
# run: bundle exec rake spec_chrome_remote

# remote_firefox:
# runs-on: ubuntu-latest

# strategy:
# matrix:
# ruby: ["3.1"]

# steps:
# - uses: actions/checkout@v4

# - name: Set up Ruby
# uses: ruby/setup-ruby@v1
# with:
# ruby-version: ${{ matrix.ruby }}
# bundler-cache: true
# - name: Run remote Firefox
# run: docker-compose up -d selenium_firefox
# - name: Run specs
# run: bundle exec rake spec_firefox_remote

non_headless:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 0480f90

Please sign in to comment.