Skip to content

Build Mac release on arm hardware #3

Build Mac release on arm hardware

Build Mac release on arm hardware #3

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches:
- develop
- main
- github-actions
workflow_dispatch:
jobs:
checkout_and_build:
strategy:

Check failure on line 13 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / CI/CD Pipeline

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 13, Col: 5): Required property is missing: runs-on
matrix:
include:
- build: mac
node_version: '21.6.2'
runs-on: macos-14
- build: mac-intel
node_version: '21.6.2'
runs-on: macos-14
# - build: win32
# node_version: '21.6.2'
# runs-on: windows-latest
# - build: win64
# node_version: '21.6.2'
# runs-on: windows-latest
# - build: linux
# node_version: '21.6.2'
# runs-on: ubuntu-latest
container:
image: cimg/node:${{ matrix.node_version }}
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
./node_modules
./*
key: ${{ runner.os }}-build-${{ github.sha }}
restore-keys: |
${{ runner.os }}-build-
- name: Install Dependencies
run: |
yarn --ignore-engines
- name: Build
run: |
if [ "${{ matrix.build }}" = "mac" ]; then
sudo yarn make:mac
elif [ "${{ matrix.build }}" = "mac-intel" ]; then
sudo yarn make:mac-intel
elif [ "${{ matrix.build }}" = "win32" ]; then
sudo dpkg --add-architecture i386
sudo apt-get -y update
sudo apt-get -y install wine wine32 mono-devel
sudo yarn make:win32
elif [ "${{ matrix.build }}" = "win64" ]; then
sudo dpkg --add-architecture i386
sudo apt-get -y update
sudo apt-get -y install wine wine32 wine64 mono-devel
sudo yarn make:win
elif [ "${{ matrix.build }}" = "linux" ]; then
sudo apt-get -y update
sudo apt-get -y install fakeroot rpm squashfs-tools
sudo yarn make:linux
fi
- name: Test
if: matrix.build == 'mac'
run: |
yarn test
- uses: actions/upload-artifact@v2
with:
name: build-artifacts-${{ matrix.build }}
path: |
./out/make/**