forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 15
34 lines (33 loc) · 1.19 KB
/
build-branch.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Build Branch
on:
workflow_dispatch:
inputs:
driver_revision:
description: "Driver revision to use, if not the latest"
required: false
clobber:
description: "Whether to build the browser from scratch"
type: boolean
required: false
jobs:
build:
name: Trigger build run on current branch
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
- uses: ./.github/actions/build-test-branch
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_DRIVER_REVISION: ${{ github.event.inputs.driver_revision }}
INPUT_CLOBBER: ${{ github.event.inputs.clobber }}
BUILD_ONLY: 1