diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 26f5225b9fa53..d4ee0dd02a5d8 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -15,6 +15,7 @@ writing and running engine tests. - [ ] I updated/added relevant documentation (doc comments with `///`). - [ ] I signed the [CLA]. - [ ] All existing and new tests are passing. +- [ ] The reviewer has submitted any presubmit flakes in this PR using the [engine presubmit flakes form] before re-triggering the failure. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. @@ -28,3 +29,4 @@ If you need help, consider asking for advice on the #hackers-new channel on [Dis [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/wiki/Tree-hygiene#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/wiki/Chat +[engine presubmit flakes form]: https://forms.gle/Wc1VyFRYJjQTH6w5A diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000000000..4ab74ba65f661 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: Build + +on: + pull_request: + + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + arch: [arm] + mode: [release] + include: + - arch: arm + triple: armv7l-tizen-linux-gnueabi + + steps: + - uses: actions/checkout@v2