WindowsXPKg/.github/workflows/macos.yml

57 lines
1.8 KiB
YAML
Raw Normal View History

# This file is a part of the UMSKT Project
#
# Copyleft (C) 2019-2024 UMSKT Contributors (et.al.)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# @FileCreated by techguy16 on 07/23/2023
# @Maintainer techguy16
name: C/C++ CI (macOS)
on:
push:
2023-08-14 22:08:24 +03:00
branches: [ "*" ]
2023-08-15 05:00:58 +03:00
paths-ignore: [ '**.md', 'doc/**', '.idea/**'] # If only these files are edited, skip
2023-08-14 22:08:24 +03:00
workflow_dispatch:
jobs:
2024-02-17 18:07:37 +02:00
build:
runs-on: macos-latest
strategy:
matrix:
2024-02-17 18:07:37 +02:00
arch:
- { name: arm64;x86_64, displayName: all-x86_64_arm64}
- { name: x86_64, displayName: x86_64 }
- { name: arm64, displayName: arm64 }
steps:
- name: Checkout Source Tree
uses: actions/checkout@v3
2024-02-17 18:07:37 +02:00
- name: Configure and build UMSKT ${{ matrix.arch.displayName }}
run: |
2024-02-17 18:07:37 +02:00
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES=${{ matrix.arch.name }} build/
cmake --build build/
- name: Move files to correct directory
run: |
mkdir -p build/actions_upload
mv build/umskt build/actions_upload/umskt
- name: Upload build artifact
uses: actions/upload-artifact@v3.1.2
with:
2024-02-17 18:07:37 +02:00
name: UMSKT-macOS-${{ matrix.arch.displayName }}
path: build/actions_upload