Compare commits
16
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0672ab7fea | ||
|
|
f837314f5c | ||
|
|
e80e41beb9 | ||
|
|
851c7eece3 | ||
|
|
b67c7ca318 | ||
|
|
7744518b87 | ||
|
|
c5c06f5dc6 | ||
|
|
18c6a4c89d | ||
|
|
c4cc3de0ec | ||
|
|
931d92cddf | ||
|
|
16eb647b1a | ||
|
|
20bce9dff4 | ||
|
|
edeb6dcf67 | ||
|
|
cb5e740688 | ||
|
|
5392458515 | ||
|
|
d271bb603d |
@@ -0,0 +1,198 @@
|
|||||||
|
name: macOS Release Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- arch: x86_64
|
||||||
|
machtype: x86_64-apple-darwin
|
||||||
|
artifact: macOS_x86_64_bin
|
||||||
|
- arch: arm64
|
||||||
|
machtype: arm64-apple-darwin
|
||||||
|
artifact: macOS_arm64_bin
|
||||||
|
runs-on: macos
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install ftjam
|
||||||
|
run: |
|
||||||
|
curl -fsSL -o ftjam.tar.gz https://sourceforge.net/projects/freetype/files/ftjam/2.5.2/ftjam-2.5.2.tar.gz/download || wget --no-check-certificate -q -O ftjam.tar.gz https://sourceforge.net/projects/freetype/files/ftjam/2.5.2/ftjam-2.5.2.tar.gz/download
|
||||||
|
tar -xzf ftjam.tar.gz
|
||||||
|
cd ftjam-2.5.2
|
||||||
|
make jam0 CC="cc -Wno-implicit-function-declaration -Wno-incompatible-pointer-types -Wno-int-conversion -Wno-implicit-int"
|
||||||
|
mkdir -p "$HOME/.local/bin"
|
||||||
|
cp jam0 "$HOME/.local/bin/jam"
|
||||||
|
echo "$HOME/.local/bin" >> $GITHUB_PATH
|
||||||
|
cp jam0 /usr/local/bin/jam 2>/dev/null || true
|
||||||
|
|
||||||
|
- name: Build ArgyllCMS
|
||||||
|
run: |
|
||||||
|
export PATH="$HOME/.local/bin:/usr/local/bin:$PATH"
|
||||||
|
export OSTYPE=darwin
|
||||||
|
export MACHTYPE=${{ matrix.machtype }}
|
||||||
|
export HOSTTYPE=${{ matrix.arch }}
|
||||||
|
export CCOPTFLAG="-O0 -Wno-error=implicit-function-declaration -Wno-error=incompatible-pointer-types -Wno-error=int-conversion -Wno-error=implicit-int"
|
||||||
|
jam -q -d2 -fJambase -j1 -sBUILTIN_TIFF=true -sBUILTIN_JPEG=true -sBUILTIN_PNG=true -sBUILTIN_Z=true -sBUILTIN_SSL=true install
|
||||||
|
|
||||||
|
- name: Ad-hoc Sign & Verify Binaries
|
||||||
|
run: |
|
||||||
|
for f in bin/*; do
|
||||||
|
if [ -f "$f" ] && file "$f" | grep -q "Mach-O"; then
|
||||||
|
echo "Ad-hoc signing $f"
|
||||||
|
codesign -f -s - "$f"
|
||||||
|
codesign -dvv "$f"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
- name: Smoke Tests
|
||||||
|
env:
|
||||||
|
ARGYLL_NOT_INTERACTIVE: "1"
|
||||||
|
ARGYLL_EXCLUDE_SERIAL_SCAN: "1"
|
||||||
|
run: |
|
||||||
|
./bin/dispcal -? || true
|
||||||
|
./bin/chartread -? || true
|
||||||
|
./bin/colprof -? || true
|
||||||
|
./bin/targen -? || true
|
||||||
|
|
||||||
|
- name: Package Release
|
||||||
|
run: |
|
||||||
|
export PATH="$HOME/.local/bin:/usr/local/bin:$PATH"
|
||||||
|
export OSTYPE=darwin
|
||||||
|
export MACHTYPE=${{ matrix.machtype }}
|
||||||
|
export HOSTTYPE=${{ matrix.arch }}
|
||||||
|
export CCOPTFLAG="-O0 -Wno-error=implicit-function-declaration -Wno-error=incompatible-pointer-types -Wno-error=int-conversion -Wno-error=implicit-int"
|
||||||
|
export NO_BUILD=1
|
||||||
|
./makepackagebin.sh
|
||||||
|
TAG="${{ github.ref_name }}"
|
||||||
|
SHORT_SHA="$(git rev-parse --short HEAD)"
|
||||||
|
echo "SHORT_SHA=${SHORT_SHA}" >> $GITHUB_ENV
|
||||||
|
mv Argyll_V*_${{ matrix.artifact }}.tgz "Argyll_${TAG}_${SHORT_SHA}_${{ matrix.artifact }}.tgz"
|
||||||
|
|
||||||
|
- name: Upload Raw Binaries
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: raw-bin-${{ matrix.arch }}
|
||||||
|
path: bin/
|
||||||
|
|
||||||
|
- name: Upload Artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: Argyll_${{ github.ref_name }}_${{ env.SHORT_SHA }}_${{ matrix.artifact }}
|
||||||
|
path: Argyll_*_${{ matrix.artifact }}.tgz
|
||||||
|
|
||||||
|
- name: Upload Release Asset
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
uses: akkuman/gitea-release-action@v1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
name: Release ${{ github.ref_name }}
|
||||||
|
body: "Release ${{ github.ref_name }} built from commit ${{ github.sha }}"
|
||||||
|
files: Argyll_*_${{ matrix.artifact }}.tgz
|
||||||
|
|
||||||
|
universal:
|
||||||
|
needs: build
|
||||||
|
runs-on: macos
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Download x86_64 binaries
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: raw-bin-x86_64
|
||||||
|
path: raw-bin-x86_64
|
||||||
|
|
||||||
|
- name: Download arm64 binaries
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: raw-bin-arm64
|
||||||
|
path: raw-bin-arm64
|
||||||
|
|
||||||
|
- name: Create Universal Binaries
|
||||||
|
run: |
|
||||||
|
mkdir -p bin
|
||||||
|
for file in raw-bin-arm64/*; do
|
||||||
|
bin_name=$(basename "$file")
|
||||||
|
if [ -f "raw-bin-x86_64/$bin_name" ]; then
|
||||||
|
if file "raw-bin-arm64/$bin_name" | grep -q "Mach-O" && file "raw-bin-x86_64/$bin_name" | grep -q "Mach-O"; then
|
||||||
|
echo "Creating universal binary with lipo: $bin_name"
|
||||||
|
lipo -create "raw-bin-x86_64/$bin_name" "raw-bin-arm64/$bin_name" -output "bin/$bin_name"
|
||||||
|
chmod +x "bin/$bin_name"
|
||||||
|
codesign -f -s - "bin/$bin_name"
|
||||||
|
else
|
||||||
|
echo "Non Mach-O file, copying directly: $bin_name"
|
||||||
|
cp "$file" "bin/$bin_name"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "Warning: $bin_name not found in raw-bin-x86_64, copying arm64 version"
|
||||||
|
cp "$file" "bin/$bin_name"
|
||||||
|
if file "bin/$bin_name" | grep -q "Mach-O"; then
|
||||||
|
codesign -f -s - "bin/$bin_name"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
for file in raw-bin-x86_64/*; do
|
||||||
|
bin_name=$(basename "$file")
|
||||||
|
if [ ! -f "bin/$bin_name" ]; then
|
||||||
|
echo "Warning: $bin_name only found in raw-bin-x86_64, copying x86_64 version"
|
||||||
|
cp "$file" "bin/$bin_name"
|
||||||
|
if file "bin/$bin_name" | grep -q "Mach-O"; then
|
||||||
|
codesign -f -s - "bin/$bin_name"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
- name: Verify Architecture & Code Signatures
|
||||||
|
env:
|
||||||
|
ARGYLL_NOT_INTERACTIVE: "1"
|
||||||
|
ARGYLL_EXCLUDE_SERIAL_SCAN: "1"
|
||||||
|
run: |
|
||||||
|
echo "=== Binary Architecture & Signature Verification ==="
|
||||||
|
for file in bin/*; do
|
||||||
|
if [ -f "$file" ] && file "$file" | grep -q "Mach-O"; then
|
||||||
|
file "$file"
|
||||||
|
codesign -dvv "$file"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
echo "=== Smoke Tests ==="
|
||||||
|
./bin/dispcal -? || true
|
||||||
|
./bin/chartread -? || true
|
||||||
|
./bin/colprof -? || true
|
||||||
|
./bin/targen -? || true
|
||||||
|
|
||||||
|
- name: Package Universal Release
|
||||||
|
run: |
|
||||||
|
export OSTYPE=darwin
|
||||||
|
export MACHTYPE=universal-apple-darwin
|
||||||
|
export HOSTTYPE=universal
|
||||||
|
export NO_BUILD=1
|
||||||
|
./makepackagebin.sh
|
||||||
|
TAG="${{ github.ref_name }}"
|
||||||
|
SHORT_SHA="$(git rev-parse --short HEAD)"
|
||||||
|
echo "SHORT_SHA=${SHORT_SHA}" >> $GITHUB_ENV
|
||||||
|
mv Argyll_V*_macOS_universal_bin.tgz "Argyll_${TAG}_${SHORT_SHA}_macOS_universal_bin.tgz"
|
||||||
|
|
||||||
|
- name: Upload Universal Artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: Argyll_${{ github.ref_name }}_${{ env.SHORT_SHA }}_macOS_universal_bin
|
||||||
|
path: Argyll_*_macOS_universal_bin.tgz
|
||||||
|
|
||||||
|
- name: Upload Universal Release Asset
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
uses: akkuman/gitea-release-action@v1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
name: Release ${{ github.ref_name }}
|
||||||
|
body: "Release ${{ github.ref_name }} built from commit ${{ github.sha }}"
|
||||||
|
files: Argyll_*_macOS_universal_bin.tgz
|
||||||
Reference in New Issue
Block a user