1
0
mirror of synced 2026-01-03 15:04:01 -05:00
Files
airbyte/.github/workflows/connector_integration_tests.yml
Topher Lubaway 5938a765bc Attempting to fix failing java integration tests (#11664)
* Attempting to fix failing java integration tests

some failing tests
https://github.com/airbytehq/airbyte/runs/5463368404?check_suite_focus=true

Greg also has context here, but we think the underlying java version
has been changed

* Less tabs

* WIP DO NOT COMMIT TO master

forces runs on test branch

* Rolled the dice wrong from GH action branch naming

i know is not ref :(

* Remove the safety for testing

* Check for master again
2022-04-01 13:10:15 -05:00

25 lines
604 B
YAML

name: Connector Integration Tests
on:
workflow_dispatch:
schedule:
# 11am UTC is 4am PDT.
- cron: '0 11 * * *'
jobs:
launch_integration_tests:
timeout-minutes: 30
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
- name: Install Java
uses: actions/setup-java@v1
with:
java-version: '17'
- name: Launch Integration Tests
run: ./tools/bin/ci_integration_workflow_launcher.sh
env:
GITHUB_TOKEN: ${{ secrets.SLASH_COMMAND_PAT }}