Skip to content

Commit

Permalink
Add one for arm64 macOS even if it doesn't work because eh
Browse files Browse the repository at this point in the history
  • Loading branch information
Dadoum committed Jul 31, 2023
1 parent 6f26e31 commit f005090
Showing 1 changed file with 59 additions and 1 deletion.
60 changes: 59 additions & 1 deletion .github/workflows/cmake-macos.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Windows build
name: macOS builds

on: push

Expand Down Expand Up @@ -63,3 +63,61 @@ jobs:
name: anisette-server-x86_64
path: |
${{github.workspace}}/bin/anisette-server-macOS-x86_64
build-anisette-server-macOS-arm64:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- uses: actions/checkout@v2
- uses: dlang-community/setup-dlang@v1
with:
compiler: ldc-1.33.0

- name: Set-up macOS cross-compilation
run: |
mkdir -p $HOME/.ldc/
curl -LO https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX11.0.sdk.tar.xz
tar -xf ./MacOSX11.0.sdk.tar.xz -C $HOME
cat << EOF | tee $HOME/.ldc/ldc2.conf
"arm64-apple-macos":
{
// default switches injected before all explicit command-line switches
switches = [
"-gcc=clang",
"-linker=lld",
"-Xcc=-target",
"-Xcc=arm64-apple-macos",
"-Xcc=-isysroot",
"-Xcc=$HOME/MacOSX11.0.sdk",
"-defaultlib=phobos2-ldc,druntime-ldc",
];
// default switches appended after all explicit command-line switches
post-switches = [
"-I$HOME/ldc2-1.33.0-osx-arm64/import",
];
// default directories to be searched for libraries when linking
lib-dirs = [
"$HOME/ldc2-1.33.0-osx-arm64/lib",
];
};
EOF
mkdir $HOME/ldc-macos
curl -LO https://github.com/ldc-developers/ldc/releases/download/v1.33.0/ldc2-1.33.0-osx-arm64.tar.xz
tar -xf ./ldc2-1.33.0-osx-arm64.tar.xz -C $HOME
- name: Build
run: dub build :anisette-server -b release-debug -c "static" --arch=arm64-apple-macos

- name: Rename
run: |
mv "${{github.workspace}}/bin/provision_anisette-server" "${{github.workspace}}/bin/anisette-server-macOS-arm64"
- uses: actions/upload-artifact@v3
with:
name: anisette-server-arm64
path: |
${{github.workspace}}/bin/anisette-server-macOS-arm64

0 comments on commit f005090

Please sign in to comment.