We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 908e263 commit bad5454Copy full SHA for bad5454
.circleci/config.yml
@@ -0,0 +1,29 @@
1
+# CircleCI 2.1 configuration file
2
+#
3
+version: 2.1
4
+commands:
5
+ compile:
6
+ parameters:
7
+ target:
8
+ type: string
9
+ steps:
10
+ - run: |
11
+ cd mbed-os-tf-m-regression-tests
12
+ python3 test_psa_target.py -t GNUARM -m <<parameters.target>> --cli=1 -b
13
+jobs:
14
+ build:
15
+ docker:
16
+ - image: mbedos/mbed-os-env:stable
17
+ working_directory: ~
18
19
+ - checkout:
20
+ path: mbed-os-tf-m-regression-tests
21
22
+ apt-get update -y
23
+ apt-get install -y cmake srecord ninja-build # TF-M dependencies
24
25
+ git clone --depth=1 --single-branch https://github.com/ARMmbed/mbed-os.git
26
+ - compile:
27
+ target: "ARM_MUSCA_S1"
28
29
+ target: "ARM_MUSCA_B1"
0 commit comments