-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #484 from martinRenou/update_galata_bot
Add bot for updating galata screenshots
- Loading branch information
Showing
1 changed file
with
86 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
name: Update Galata References | ||
|
||
on: | ||
issue_comment: | ||
types: [created, edited] | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
|
||
jobs: | ||
update-reference-screenshots: | ||
name: Update Galata References | ||
if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, 'update galata references') }} | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Configure git to use https | ||
run: git config --global hub.protocol https | ||
|
||
- name: Checkout the branch from the PR that triggered the job | ||
run: hub pr checkout ${{ github.event.issue.number }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Setup conda | ||
uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
activate-environment: ipympl-dev | ||
environment-file: dev-environment.yml | ||
python-version: 3.9 | ||
mamba-version: "*" | ||
auto-activate-base: false | ||
channels: conda-forge | ||
|
||
- name: Install ipympl | ||
run: pip install . | ||
|
||
- name: Install Galata | ||
run: | | ||
yarn install | ||
yarn playwright install chromium | ||
working-directory: ui-tests | ||
|
||
- name: Launch JupyterLab | ||
run: yarn run start:detached | ||
working-directory: ui-tests | ||
|
||
- name: Wait for JupyterLab | ||
uses: ifaxity/wait-on-action@v1 | ||
with: | ||
resource: http-get://localhost:8888/api | ||
timeout: 20000 | ||
|
||
- name: Generate updated Galata References | ||
run: yarn run test:update | ||
working-directory: ui-tests | ||
|
||
- name: Compress screenshots | ||
run: | | ||
sudo apt install optipng | ||
optipng *.png | ||
working-directory: ui-tests/tests/ipympl.test.ts-snapshots | ||
|
||
- name: Commit reference images | ||
run: | | ||
git config user.name 'github-actions[bot]' | ||
git config user.email 'github-actions[bot]@users.noreply.github.com' | ||
git pull | ||
git add ui-tests/tests/ipympl.test.ts-snapshots | ||
git commit -m "Update Galata References" | ||
git push | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |