Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build-ios:
name: Build iOS App
runs-on: [self-hosted, macOS, ARM64]
runs-on: bladerunner-macos

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

nix-build-ios:
name: Nix iOS Build
runs-on: [self-hosted, macOS, ARM64]
runs-on: bladerunner-macos

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
test-template-ios:
name: Template → iOS Build
runs-on: [self-hosted, macOS, ARM64]
runs-on: bladerunner-macos

steps:
- name: Checkout repository
Expand Down
7 changes: 6 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,16 @@
# Nix injects C/C++ flags and compiler wrappers that conflict with Xcode builds.
# Unsetting all Nix compiler-related env vars ensures xcodebuild uses Apple's toolchain.
if [[ "$OSTYPE" == "darwin"* ]]; then
unset DEVELOPER_DIR SDKROOT
unset SDKROOT
unset NIX_CFLAGS_COMPILE NIX_LDFLAGS NIX_ENFORCE_NO_NATIVE
unset NIX_CC NIX_CXX NIX_BINTOOLS
unset NIX_CFLAGS_COMPILE_FOR_TARGET NIX_LDFLAGS_FOR_TARGET
export PATH="/usr/bin:$PATH"
if [ -d /Applications/Xcode.app/Contents/Developer ]; then
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
else
unset DEVELOPER_DIR
fi
echo " macOS: iOS and Android development available"
echo " CocoaPods: $(pod --version 2>/dev/null || echo 'not available')"
else
Expand Down
Loading