Build downstream artifacts #684
Workflow file for this run
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 downstream artifacts | |
on: | |
# We only want the Rust Crypto Cypress tests on merge queue to prevent regressions | |
# from creeping in. They take a long time to run and consume 4 concurrent runners. | |
# Anyone working on Rust Crypto is able to run the tests locally if required. | |
merge_group: | |
types: [checks_requested] | |
# For now at least, we don't run this or the cypress-tests against pushes | |
# to develop or master. | |
# | |
# Note that if we later choose to do so, we'll need to find a way to stop | |
# the results in Cypress Cloud from clobbering those from the 'develop' | |
# branch of matrix-react-sdk. | |
# | |
#push: | |
# branches: [develop, master] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-element-web: | |
name: Build element-web | |
uses: matrix-org/matrix-react-sdk/.github/workflows/[email protected] | |
with: | |
matrix-js-sdk-sha: ${{ github.sha }} | |
react-sdk-repository: matrix-org/matrix-react-sdk |