mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 16:05:21 +01:00
idk
This commit is contained in:
parent
8e667f8d8c
commit
72a4356e4a
1 changed files with 0 additions and 46 deletions
46
.github/workflows/workflow.yml
vendored
46
.github/workflows/workflow.yml
vendored
|
@ -34,49 +34,3 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: linux-${{ matrix.arch }}-binaries
|
name: linux-${{ matrix.arch }}-binaries
|
||||||
path: build/*
|
path: build/*
|
||||||
|
|
||||||
build-macos:
|
|
||||||
name: Build on macOS
|
|
||||||
runs-on: macos-latest
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
arch: [x64, arm64]
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- name: Install Dependencies
|
|
||||||
run: brew install cmake
|
|
||||||
- name: Build
|
|
||||||
run: |
|
|
||||||
mkdir build
|
|
||||||
cd build
|
|
||||||
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES=$(if [ "${{ matrix.arch }}" == "x64" ]; then echo "x86_64"; else echo "arm64"; fi)
|
|
||||||
make
|
|
||||||
- name: Upload Artifact
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: macos-${{ matrix.arch }}-binaries
|
|
||||||
path: build/*
|
|
||||||
|
|
||||||
build-windows:
|
|
||||||
name: Build on Windows
|
|
||||||
runs-on: windows-latest
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
arch: [x64, arm64]
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- name: Install Dependencies
|
|
||||||
run: |
|
|
||||||
choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System'
|
|
||||||
choco install mingw
|
|
||||||
- name: Build
|
|
||||||
run: |
|
|
||||||
mkdir build
|
|
||||||
cd build
|
|
||||||
cmake .. -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release
|
|
||||||
mingw32-make
|
|
||||||
- name: Upload Artifact
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: windows-${{ matrix.arch }}-binaries
|
|
||||||
path: build/*
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue