Build Mac release on arm hardware #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI/CD Pipeline | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
- main | ||
- github-actions | ||
workflow_dispatch: | ||
jobs: | ||
checkout_and_build: | ||
strategy: | ||
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/** | ||