summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeo Takahashi <takeo.takahashi.xv@renesas.com>2022-04-28 22:18:13 +0900
committerTakeo Takahashi <takeo.takahashi.xv@renesas.com>2022-04-29 12:29:07 +0900
commite214ae0e644f61b73a71a6dcafe0b018cb102e9f (patch)
tree7f19d79059a9f92cb5ab2991142c0ee1060f2a7f
parent86e35178e62ca6976afff9bed4318248224f239b (diff)
github/workflows: Add workflow for renesas-ra port.
Signed-off-by: Takeo Takahashi <takeo.takahashi.xv@renesas.com>
-rw-r--r--.github/workflows/ports_renesas-ra.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/ports_renesas-ra.yml b/.github/workflows/ports_renesas-ra.yml
new file mode 100644
index 000000000..20e068ee7
--- /dev/null
+++ b/.github/workflows/ports_renesas-ra.yml
@@ -0,0 +1,24 @@
+name: renesas-ra port
+
+on:
+ push:
+ pull_request:
+ paths:
+ - '.github/workflows/*.yml'
+ - 'tools/**'
+ - 'py/**'
+ - 'extmod/**'
+ - 'lib/**'
+ - 'drivers/**'
+ - 'ports/renesas-ra/**'
+
+jobs:
+ build_renesas_ra_board:
+ runs-on: ubuntu-20.04
+ steps:
+ - uses: actions/checkout@v2
+ - name: Install packages
+ run: source tools/ci.sh && ci_renesas_ra_setup
+ - name: Build
+ run: source tools/ci.sh && ci_renesas_ra_board_build
+