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 4c8991b commit e24951bCopy full SHA for e24951b
1 file changed
.github/workflows/build.yaml
@@ -82,6 +82,29 @@ jobs:
82
keep_files: true
83
destination_dir: builds/${{ github.ref_name }}
84
85
+ build-macos:
86
+ runs-on: macos-latest
87
+
88
+ steps:
89
+ - uses: actions/checkout@v4
90
+ with:
91
+ submodules: true
92
+ - name: Install OS dependencies
93
+ run: brew install pkg-config libffi
94
+ - uses: actions/setup-python@v5
95
96
+ python-version: '3.10'
97
98
99
+ repository: jonnor/micropython
100
+ path: micropython
101
+ ref: v1.25.0
102
+ - name: Build custom firmware with user modules, and tests. Unix/x64
103
+ run: make check_unix V=1
104
+ - name: Build .mpy modules and run tests Unix/x64
105
+ run: make check ARCH=x64 V=1
106
107
108
docs:
109
110
runs-on: ubuntu-latest
0 commit comments