123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- name: relay integration
- on:
- push:
- branches:
- - master
- - releases/**
- pull_request:
- jobs:
- test:
- name: relay test
- runs-on: ubuntu-16.04
- timeout-minutes: 10
- steps:
- - uses: actions/checkout@v2
- - name: Check for python file changes
- uses: getsentry/paths-filter@v2
- id: changes
- with:
- token: ${{ github.token }}
- filters: .github/file-filters.yml
- # Until GH composite actions can use `uses`, we need to setup python here
- - uses: actions/setup-python@v2
- if: steps.changes.outputs.backend == 'true'
- with:
- python-version: 2.7.17
- - name: Setup pip
- uses: ./.github/actions/setup-pip
- id: pip
- if: steps.changes.outputs.backend == 'true'
- - name: pip cache
- uses: actions/cache@v2
- if: steps.changes.outputs.backend == 'true'
- with:
- path: ${{ steps.pip.outputs.pip-cache-dir }}
- key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-*.txt') }}
- restore-keys: |
- ${{ runner.os }}-pip-
- - name: Setup sentry env
- uses: ./.github/actions/setup-sentry
- id: setup
- if: steps.changes.outputs.backend == 'true'
- with:
- python: 2
- snuba: true
- kafka: true
- - name: Pull relay image
- if: steps.changes.outputs.backend == 'true'
- run: |
- # pull relay we'll run and kill it for each test
- docker pull us.gcr.io/sentryio/relay:nightly
- docker ps -a
- - name: Run test
- if: steps.changes.outputs.backend == 'true'
- run: |
- make test-relay-integration
|