Build/Test #565
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: Build/Test | |
on: | |
workflow_dispatch: | |
inputs: | |
clobber: | |
description: "Build the browser from scratch" | |
type: boolean | |
required: false | |
driver_revision: | |
description: "Driver revision to use, if not the latest" | |
required: false | |
push: | |
branches: | |
- webreplay-release | |
jobs: | |
build-test: | |
name: Trigger build/test run | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- name: Connect to Tailscale | |
uses: tailscale/github-action@v2 | |
with: | |
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} | |
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} | |
tags: tag:buildtest | |
- uses: actions/checkout@v2 | |
with: | |
ref: replay-playwright | |
- uses: actions/checkout@v2 | |
with: | |
ref: webreplay-release | |
- uses: ./.github/actions/build-test | |
env: | |
BUILD_TEST_AUTHORIZATION: ${{ secrets.BUILD_TEST_AUTHORIZATION }} | |
BUILD_TEST_HOSTNAME: a49855c191a944333918aea7ad31bc76-6a8a830d89921d8a.elb.us-east-2.amazonaws.com | |
BUILD_TEST_PORT: ${{ secrets.BUILD_TEST_PORT }} | |
BUILD_TEST_INSECURE: ${{ secrets.BUILD_TEST_INSECURE }} | |
INPUT_CLOBBER: ${{ github.event.inputs.clobber }} | |
INPUT_DRIVER_REVISION: ${{ github.event.inputs.driver_revision }} |