Run jobs on every PR #124
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run jobs on every PR | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: "0 1 * * *" # everyday at 10am JST | |
jobs: | |
build-ruby2: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: | |
- 2.6 | |
- 2.7 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
bundler-cache: true | |
- run: gem update --system 3.4.22 # The latest of Ruby 2.x support | |
- run: bundle exec rake | |
build-ruby3: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: | |
- 3.0 | |
- 3.1 | |
- 3.2 | |
- 3.3 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
bundler-cache: true | |
- run: gem update --system | |
- run: bundle exec rake | |
instrument-ruby2: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: | |
- 2.6 | |
- 2.7 | |
services: | |
app: | |
image: ghcr.io/deploygate/deploygate-mock-server:main | |
ports: | |
- 3000/tcp | |
options: >- | |
--health-cmd "curl -fI http://localhost:3000" | |
--health-interval 15s | |
--health-timeout 5s | |
--health-retries 5 | |
--health-start-period 20s | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
bundler-cache: true | |
- run: gem update --system 3.4.22 # The latest of Ruby 2.x support | |
- run: ./bin/dg deploy spec/fixtures/sample.apk | |
env: | |
DG_DEVELOP_URL: http://localhost:${{ job.services.app.ports[3000] }} | |
DG_USER_NAME: 'owner_test' | |
DG_TOKEN: 'owner_test' | |
- run: ./bin/dg deploy spec/fixtures/sample.aab | |
env: | |
DG_DEVELOP_URL: http://localhost:${{ job.services.app.ports[3000] }} | |
DG_USER_NAME: 'owner_test' | |
DG_TOKEN: 'owner_test' | |
- run: ./bin/dg deploy spec/fixtures/sample.ipa | |
env: | |
DG_DEVELOP_URL: http://localhost:${{ job.services.app.ports[3000] }} | |
DG_USER_NAME: 'owner_test' | |
DG_TOKEN: 'owner_test' | |
instrument-ruby3: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: | |
- 3.0 | |
- 3.1 | |
- 3.2 | |
- 3.3 | |
services: | |
app: | |
image: ghcr.io/deploygate/deploygate-mock-server:main | |
ports: | |
- 3000/tcp | |
options: >- | |
--health-cmd "curl -fI http://localhost:3000" | |
--health-interval 15s | |
--health-timeout 5s | |
--health-retries 5 | |
--health-start-period 20s | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
bundler-cache: true | |
- run: gem update --system | |
- run: ./bin/dg deploy spec/fixtures/sample.apk | |
env: | |
DG_DEVELOP_URL: http://localhost:${{ job.services.app.ports[3000] }} | |
DG_USER_NAME: 'owner_test' | |
DG_TOKEN: 'owner_test' | |
- run: ./bin/dg deploy spec/fixtures/sample.aab | |
env: | |
DG_DEVELOP_URL: http://localhost:${{ job.services.app.ports[3000] }} | |
DG_USER_NAME: 'owner_test' | |
DG_TOKEN: 'owner_test' | |
- run: ./bin/dg deploy spec/fixtures/sample.ipa | |
env: | |
DG_DEVELOP_URL: http://localhost:${{ job.services.app.ports[3000] }} | |
DG_USER_NAME: 'owner_test' | |
DG_TOKEN: 'owner_test' |