Skip to content

Commit ca3a11d

Browse files
authored
Remove obsoleted Introspect module (#275)
1 parent a896b41 commit ca3a11d

25 files changed

+51
-2581
lines changed

.github/workflows/cd.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,19 @@ on:
77

88
jobs:
99
deploy:
10+
name: Deploy to CocoaPods Trunk
1011
runs-on: macos-latest
11-
strategy:
12-
fail-fast: false
13-
matrix:
14-
podspec:
15-
- Introspect.podspec
16-
- SwiftUIIntrospect.podspec
1712
steps:
1813
- name: Git Checkout
1914
uses: actions/checkout@v3
2015
with:
2116
fetch-depth: 0 # required to be able to find Git tags
2217

23-
- name: Deploy to CocoaPods Trunk (${{ matrix.podspec }})
18+
- name: Deploy to CocoaPods Trunk
2419
run: |
2520
set -eo pipefail
2621
export LIB_VERSION=$(git describe --tags `git rev-list --tags --max-count=1`)
27-
pod lib lint ${{ matrix.podspec }} --allow-warnings
28-
pod trunk push ${{ matrix.podspec }} --allow-warnings
22+
pod lib lint SwiftUIIntrospect.podspec --allow-warnings
23+
pod trunk push SwiftUIIntrospect.podspec --allow-warnings
2924
env:
3025
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}

.github/workflows/ci.yml

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,16 @@ concurrency:
1515
cancel-in-progress: true
1616

1717
jobs:
18-
lint-podspecs:
19-
name: Lint Podspecs
18+
lint-podspec:
19+
name: Lint Podspec
2020
runs-on: macos-latest
2121
steps:
2222
- name: Git Checkout
2323
uses: actions/checkout@v3
2424
with:
2525
fetch-depth: 0 # required to be able to find Git tags
2626

27-
- name: Lint Introspect.podspec
28-
run: |
29-
set -eo pipefail
30-
export LIB_VERSION=$(git describe --tags `git rev-list --tags --max-count=1`)
31-
pod lib lint Introspect.podspec --allow-warnings
32-
33-
- name: Lint SwiftUIIntrospect.podspec
27+
- name: Lint Podspec
3428
run: |
3529
set -eo pipefail
3630
export LIB_VERSION=$(git describe --tags `git rev-list --tags --max-count=1`)
@@ -91,10 +85,6 @@ jobs:
9185
os: macos-13
9286
xcode: 15.0
9387

94-
- platform: [macOS, 11]
95-
runtime: macOS 11
96-
os: macos-11
97-
xcode: 13.2.1
9888
- platform: [macOS, 12]
9989
runtime: macOS 12
10090
os: macos-12
@@ -137,18 +127,12 @@ jobs:
137127
xcrun simctl list
138128
xcodebuild -scheme "Showcase" -showdestinations
139129
140-
- if: ${{ join(matrix.platform, ' ') != 'macOS 11' }}
141-
name: Build Showcase
130+
- name: Build Showcase
142131
run: fastlane build platform:${{ matrix.platform[0] }} version:${{ matrix.platform[1] }} scheme:Showcase
143132

144-
- if: ${{ join(matrix.platform, ' ') != 'iOS 13' && join(matrix.platform, ' ') != 'tvOS 13' && join(matrix.platform, ' ') != 'iOS 17' && join(matrix.platform, ' ') != 'tvOS 17' && matrix.platform[0] != 'visionos' }}
145-
name: Run Tests (Introspect)
146-
run: fastlane test platform:${{ matrix.platform[0] }} version:${{ matrix.platform[1] }} scheme:Introspect
147-
148-
- if: ${{ join(matrix.platform, ' ') != 'macOS 11' }}
149-
name: Run Tests (SwiftUIIntrospect)
133+
- name: Run Tests
150134
run: fastlane test platform:${{ matrix.platform[0] }} version:${{ matrix.platform[1] }} scheme:SwiftUIIntrospectTests configuration:Debug
151135

152136
- if: ${{ matrix.platform[0] == 'iOS' && matrix.platform[1] <= '16' }}
153-
name: Run UI Tests (SwiftUIIntrospect)
137+
name: Run UI Tests
154138
run: fastlane test platform:${{ matrix.platform[0] }} version:${{ matrix.platform[1] }} scheme:SwiftUIIntrospectUITests configuration:Debug

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ Changelog
33

44
## master
55

6-
- Infrastructure: removed min iOS version constraint for UI Tests (#343)
6+
- Removed: obsoleted Introspect module (#275)
7+
- Infrastructure: renamed default branch to `main`
8+
- Infrastructure: fixed modal introspection tests (#345)
9+
- Infrastructure: run UI Tests on iOS 13 (#347)
10+
- Infrastructure: run tests on macCatalyst (#346)
711

812
## [0.12.0]
913

Introspect.podspec

Lines changed: 0 additions & 19 deletions
This file was deleted.

Introspect/AppKitIntrospectionView.swift

Lines changed: 0 additions & 66 deletions
This file was deleted.

0 commit comments

Comments
 (0)