Skip to content

Commit bdb00d4

Browse files
committed
CI TEST
1 parent 2c6eb36 commit bdb00d4

File tree

2 files changed

+14
-20
lines changed

2 files changed

+14
-20
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ writing and running engine tests.
1515
- [ ] I updated/added relevant documentation (doc comments with `///`).
1616
- [ ] I signed the [CLA].
1717
- [ ] All existing and new tests are passing.
18+
- [ ] The reviewer has submitted any presubmit flakes in this PR using the [engine presubmit flakes form] before re-triggering the failure.
1819

1920
If you need help, consider asking for advice on the #hackers-new channel on [Discord].
2021

@@ -28,3 +29,4 @@ If you need help, consider asking for advice on the #hackers-new channel on [Dis
2829
[flutter/tests]: https://github.com/flutter/tests
2930
[breaking change policy]: https://github.com/flutter/flutter/wiki/Tree-hygiene#handling-breaking-changes
3031
[Discord]: https://github.com/flutter/flutter/wiki/Chat
32+
[engine presubmit flakes form]: https://forms.gle/Wc1VyFRYJjQTH6w5A

.github/workflows/build.yml

Lines changed: 12 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,20 @@
1-
name: Check Symbol
1+
name: Build
22

33
on:
4-
workflow_run:
5-
workflows: ["Build"]
6-
types:
7-
- requested
4+
pull_request:
5+
86

97
jobs:
10-
check-symbol:
8+
build:
119
runs-on: ubuntu-latest
1210

11+
strategy:
12+
matrix:
13+
arch: [arm]
14+
mode: [release]
15+
include:
16+
- arch: arm
17+
triple: armv7l-tizen-linux-gnueabi
18+
1319
steps:
1420
- uses: actions/checkout@v2
15-
with:
16-
repository: WonyoungChoi/PrivateData
17-
token: ${{ secrets.MY_PAT }}
18-
19-
- name: Examin Environment
20-
run: |
21-
ls -al
22-
env
23-
24-
- name: Test Script
25-
uses: actions/github-script@v4
26-
with:
27-
script: |
28-
console.log(JSON.stringify(context.payload))

0 commit comments

Comments
 (0)