diff options
| author | Jeff Epler <jepler@gmail.com> | 2020-01-25 18:49:14 -0600 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2020-01-25 18:49:14 -0600 |
| commit | 0b7551f4c7af0fd6344386312f64d894cf4bd09b (patch) | |
| tree | 99380d027212fa9d64beedad934d8b16ba0c30fe | |
| parent | eee9159a91a2b7ad367850cab2b11ab5c427e4df (diff) | |
add mpy-cross-mac to build artifacts
| -rw-r--r-- | .github/workflows/build.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cc43d5b7e..7ba9caa54 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -88,6 +88,33 @@ jobs: name: mpy-cross.static-x64-windows path: mpy-cross/mpy-cross.static.exe + mpy-cross-mac: + runs-on: macos-latest + steps: + - name: Dump GitHub context + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + run: echo "$GITHUB_CONTEXT" + - name: Install deps + run: | + brew link --force gettext + - name: Versions + run: | + gcc --version + python3 --version + msgfmt --version + - uses: actions/checkout@v1 + with: + submodules: true + - name: CircuitPython version + run: git describe --dirty --always --tags + - name: Build mpy-cross + run: make -C mpy-cross -j2 + - uses: actions/upload-artifact@v1.0.0 + with: + name: mpy-cross-macos-catalina + path: mpy-cross/mpy-cross + build-arm: runs-on: ubuntu-16.04 needs: test |
