This repository has been archived by the owner on Sep 4, 2023. It is now read-only.
End-to-End Tests on esr102 #501
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: End-to-End Tests on esr102 | |
on: | |
push: | |
branches: [ main ] | |
schedule: | |
- cron: '30 1 * * *' | |
pull_request: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '17.x' | |
- run: brew unlink [email protected] | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.6' | |
- run: npm install | |
- run: brew install git-cinnabar | |
- name: Run e2e test on esr102 | |
env: | |
MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURC: system | |
run: python3 scripts/tests/e2e-tests.py esr102 |