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
6 changes: 4 additions & 2 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,6 @@ jobs:
ccache-${{ runner.os }}-
- name: Configure ccache
run: |
echo "CC=ccache clang" >> "$GITHUB_ENV"
echo "CXX=ccache clang++" >> "$GITHUB_ENV"
ccache --max-size="$CCACHE_MAXSIZE"
ccache --zero-stats
- name: Prepare ladybug sources
Expand All @@ -87,6 +85,8 @@ jobs:
-destination "${{ matrix.destination }}" \
-configuration ${{ matrix.config }} \
ENABLE_TESTABILITY=YES \
C_COMPILER_LAUNCHER=ccache \
CLANG_ENABLE_EXPLICIT_MODULES_WITH_COMPILER_LAUNCHER=YES \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO
- name: Test on iOS Simulator
Expand All @@ -96,6 +96,8 @@ jobs:
-destination "${{ matrix.destination }}" \
-configuration ${{ matrix.config }} \
ENABLE_TESTABILITY=YES \
C_COMPILER_LAUNCHER=ccache \
CLANG_ENABLE_EXPLICIT_MODULES_WITH_COMPILER_LAUNCHER=YES \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO
- name: Show ccache stats
Expand Down
4 changes: 4 additions & 0 deletions Tests/ladybug-swiftTests/ExtensionTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ import XCTest

final class ExtensionTests: XCTestCase {
func testGds() async throws {
#if os(iOS)
throw XCTSkip("ALGO extension installation is not available on iOS simulator")
#endif

func normalize(_ rows: [[String]]) -> [[String]] {
return
rows
Expand Down
Loading