test macos build #91
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: Cross-compile with fyne-cross | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- '.github/workflows/release.yml' | |
- '.github/FUNDING.yml' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- '.github/workflows/release.yml' | |
- '.github/FUNDING.yml' | |
jobs: | |
# build-linux: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: Set up Go | |
# uses: actions/setup-go@v5 | |
# with: | |
# go-version: 1.22 | |
# - name: Install fyne-cross | |
# run: go install github.com/fyne-io/fyne-cross@latest | |
# - name: Cross-compile for Linux | |
# run: fyne-cross linux | |
# | |
# build-windows: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: Set up Go | |
# uses: actions/setup-go@v5 | |
# with: | |
# go-version: 1.22 | |
# - name: Install fyne-cross | |
# run: go install github.com/fyne-io/fyne-cross@latest | |
# - name: Cross-compile for Windows | |
# run: fyne-cross windows | |
build-mac: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: Compile for MacOS | |
run: | | |
GOOS=darwin GOARCH=arm64 go build -o SoundscapeSync_arm64 | |
CGO_ENABLED=1 GOOS=darwin GOARCH=amd64 go build -o SoundscapeSync_amd64 | |
lipo -create -output SoundscapeSync SoundscapeSync_amd64 SoundscapeSync_arm64 | |
ls -al | |
mkdir -p SoundscapeSync.app/Contents/MacOS | |
mv SoundscapeSync SoundscapeSync.app/Contents/MacOS/SoundscapeSync | |
echo '<?xml version="1.0" encoding="UTF-8"?>' > SoundscapeSync.app/Contents/Info.plist | |
echo '<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">' >> SoundscapeSync.app/Contents/Info.plist | |
echo '<plist version="1.0">' >> SoundscapeSync.app/Contents/Info.plist | |
echo '<dict>' >> SoundscapeSync.app/Contents/Info.plist | |
echo ' <key>CFBundleName</key>' >> SoundscapeSync.app/Contents/Info.plist | |
echo ' <string>SoundscapeSync</string>' >> SoundscapeSync.app/Contents/Info.plist | |
echo ' <key>CFBundleVersion</key>' >> SoundscapeSync.app/Contents/Info.plist | |
echo ' <string>1.0</string>' >> SoundscapeSync.app/Contents/Info.plist | |
echo ' <key>CFBundleIdentifier</key>' >> SoundscapeSync.app/Contents/Info.plist | |
echo ' <string>com.cloonar.soundscape-sync</string>' >> SoundscapeSync.app/Contents/Info.plist | |
echo ' <key>Executable</key>' >> SoundscapeSync.app/Contents/Info.plist | |
echo ' <string>SoundscapeSync</string>' >> SoundscapeSync.app/Contents/Info.plist | |
echo '</dict>' >> SoundscapeSync.app/Contents/Info.plist | |
echo '</plist>' >> SoundscapeSync.app/Contents/Info.plist | |
chmod +x SoundscapeSync.app/Contents/MacOS/SoundscapeSync | |
mkdir .dist | |
mv SoundscapeSync.app .dist/ | |
- name: Upload macOS artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: macos-build | |
path: .dist |