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 2261778 commit 6512797Copy full SHA for 6512797
.github/workflows/macOS.yml
@@ -6,7 +6,7 @@ on:
6
jobs:
7
build:
8
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
9
- runs-on: macos-latest-large
+ runs-on: macos-latest
10
11
steps:
12
- uses: actions/checkout@v4
@@ -19,8 +19,13 @@ jobs:
19
with:
20
python-version: '3.10'
21
22
+ -name: get version
23
+ run: |
24
+ uname -a
25
+ make --version
26
+
27
- name: Install Dependencies
- run: brew install --force gcc libffi cmake ninja make
28
+ run: brew install --force libffi ninja
29
30
- name: Build macOS port
31
run: python3 make.py macOS submodules clean mpy_cross DISPLAY=sdl_display INDEV=sdl_pointer
0 commit comments