Skip to content

Commit

Permalink
CI TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
WonyoungChoi committed Sep 17, 2021
1 parent 335f088 commit f81aa7d
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 21 deletions.
2 changes: 2 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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].

Expand All @@ -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
59 changes: 38 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,45 @@
name: Check Symbol
name: Build

on:
workflow_run:
workflows: ["Build"]
types:
- requested
pull_request:


jobs:
check-symbol:
build:
runs-on: ubuntu-latest

strategy:
matrix:
arch: [arm]
mode: [release]
include:
- arch: arm
triple: armv7l-tizen-linux-gnueabi

steps:
- uses: actions/checkout@v2
with:
repository: WonyoungChoi/PrivateData
token: ${{ secrets.MY_PAT }}

- name: Examin Environment
run: |
ls -al
env
- name: Test Script
uses: actions/github-script@v4
with:
script: |
console.log(JSON.stringify(context.payload))
- uses: actions/checkout@v2
with:
path: src/flutter

# - uses: actions/cache@v2
# with:
# path: ${{ env.CACHE_PATH }}
# key: ${{ env.CACHE_PREFIX }}-${{ github.sha }}
# restore-keys: |
# ${{ env.CACHE_PREFIX }}-

# - name: gclient sync
# run: |
# gclient-prepare-sync.sh --reduce-deps --shallow-sync
# gclient sync -v --no-history --shallow

# - name: build
# run: |
# cache-checksum.sh restore $CACHE_PATH
# build-engine.sh \
# --target-os linux \
# --target-arch ${{ matrix.arch }} \
# --target-triple ${{ matrix.triple }} \
# --runtime-mode ${{ matrix.mode }}
# cache-checksum.sh save $CACHE_PATH

0 comments on commit f81aa7d

Please sign in to comment.