Skip to content

Commit d55cc09

Browse files
committed
add arm builds for aw-qt
1 parent 635bbbe commit d55cc09

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
os: [ubuntu-20.04, windows-latest, macOS-13]
29+
os: [ubuntu-20.04, ubuntu-20.04-arm, windows-latest, macOS-13, macos-latest]
3030
python_version: [3.9]
3131
node_version: [20]
3232
skip_rust: [false]
@@ -53,14 +53,14 @@ jobs:
5353
echo "RELEASE=${{ startsWith(github.ref_name, 'v') || github.ref_name == 'master' }}" >> $GITHUB_ENV
5454
5555
- name: Set up Python
56-
if: runner.os != 'macOS'
56+
if: matrix.os != 'macOS-13'
5757
uses: actions/setup-python@v5
5858
with:
5959
python-version: ${{ matrix.python_version }}
6060

6161
# Setup Python version built for older macOS (https://github.com/actions/virtual-environments/issues/1256)
6262
- name: Set up Python for macOS
63-
if: runner.os == 'macOS'
63+
if: matrix.os == 'macOS-13'
6464
run: |
6565
curl https://www.python.org/ftp/python/${PYTHON_VERSION}/python-${PYTHON_VERSION}-macosx10.9.pkg -o "python.pkg"
6666

0 commit comments

Comments
 (0)