* 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
25 lines
604 B
YAML
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 }}
|