summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ports_mimxrt.yml23
-rwxr-xr-xtools/ci.sh13
2 files changed, 36 insertions, 0 deletions
diff --git a/.github/workflows/ports_mimxrt.yml b/.github/workflows/ports_mimxrt.yml
new file mode 100644
index 000000000..8fbc2209e
--- /dev/null
+++ b/.github/workflows/ports_mimxrt.yml
@@ -0,0 +1,23 @@
+name: mimxrt port
+
+on:
+ push:
+ pull_request:
+ paths:
+ - '.github/workflows/*.yml'
+ - 'tools/**'
+ - 'py/**'
+ - 'extmod/**'
+ - 'lib/**'
+ - 'drivers/**'
+ - 'ports/mimxrt/**'
+
+jobs:
+ build:
+ runs-on: ubuntu-20.04
+ steps:
+ - uses: actions/checkout@v2
+ - name: Install packages
+ run: source tools/ci.sh && ci_mimxrt_setup
+ - name: Build
+ run: source tools/ci.sh && ci_mimxrt_build
diff --git a/tools/ci.sh b/tools/ci.sh
index 7b38ce0df..df812141f 100755
--- a/tools/ci.sh
+++ b/tools/ci.sh
@@ -139,6 +139,19 @@ function ci_esp8266_build {
}
########################################################################################
+# ports/mimxrt
+
+function ci_mimxrt_setup {
+ ci_gcc_arm_setup
+}
+
+function ci_mimxrt_build {
+ make ${MAKEOPTS} -C ports/mimxrt submodules
+ make ${MAKEOPTS} -C ports/mimxrt BOARD=MIMXRT1020_EVK
+ make ${MAKEOPTS} -C ports/mimxrt BOARD=TEENSY40
+}
+
+########################################################################################
# ports/nrf
function ci_nrf_setup {