mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
e2d4379489
Turns out github already has a reserved bot label called `ubuntu-18.04`, so marking our self-hosted bot this way was adding it to the pool of machines that are used here.
28 lines
662 B
YAML
28 lines
662 B
YAML
name: build firefox
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '.github/workflows/build_firefox.yml'
|
|
- 'browser_patches/firefox/BUILD_NUMBER'
|
|
|
|
env:
|
|
AZ_ACCOUNT_KEY: ${{ secrets.AZ_ACCOUNT_KEY }}
|
|
AZ_ACCOUNT_NAME: ${{ secrets.AZ_ACCOUNT_NAME }}
|
|
TELEGRAM_BOT_KEY: ${{ secrets.TELEGRAM_BOT_KEY }}
|
|
|
|
jobs:
|
|
ubuntu_18_04:
|
|
name: Ubuntu 18.04
|
|
runs-on: [self-hosted, fast-ubuntu-18.04]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 14
|
|
- uses: microsoft/playwright-github-action@v1
|
|
- run: ./browser_patches/checkout_build_archive_upload.sh firefox-ubuntu-18.04
|
|
|