Skip to content

Commit

Permalink
Merge pull request #15 from SomeRandomiOSDev/Modernize
Browse files Browse the repository at this point in the history
Modernized the project
  • Loading branch information
SomeRandomiOSDev committed Oct 20, 2021
2 parents 8927964 + d70a15e commit 773b538
Show file tree
Hide file tree
Showing 48 changed files with 2,729 additions and 2,550 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/carthage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Carthage
on: [push, workflow_dispatch]

jobs:
build:
name: Build
runs-on: macOS-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Install Carthage
run: |
brew update
brew install carthage
- name: Create Cartfile
run: |
# Delete all of the old tags (if any) and create a new tag for building
git tag | xargs git tag -d
git tag 1.0
echo "git \"file://$(pwd)\"" > ./Cartfile
- name: Build
run: |
./scripts/carthage.sh update
23 changes: 23 additions & 0 deletions .github/workflows/cocoapods.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Cocoapods
on: [push, workflow_dispatch]

jobs:
lint:
name: Lint
runs-on: macOS-11
steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Setup Cocoapods
uses: maxim-lobanov/setup-cocoapods@v1
with:
version: latest

- name: Lint (Dynamic Library)
run: |
pod lib lint
- name: Lint (Static Library)
run: |
pod lib lint --use-libraries
50 changes: 50 additions & 0 deletions .github/workflows/swift-pacakge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Swift Package
on: [push, workflow_dispatch]

jobs:
build:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest]

name: Build
runs-on: ${{ matrix.os }}

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Build
run: |
swift --version
swift build -v
test:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest]

name: Test
runs-on: ${{ matrix.os }}
needs: build

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Test
run: |
swift test -v --enable-code-coverage
- name: Generate Code Coverage File
if: ${{ runner.os == 'macOS' && github.event_name == 'push' && github.ref == 'refs/heads/main' }}
run: |
xcrun llvm-cov export --instr-profile=.build/x86_64-apple-macosx/debug/codecov/default.profdata .build/x86_64-apple-macosx/debug/ComplexPackageTests.xctest/Contents/MacOS/ComplexPackageTests > ./info.lcov
- name: Upload Code Coverage
if: ${{ runner.os == 'macOS' && github.event_name == 'push' && github.ref == 'refs/heads/main' }}
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./info.lcov
verbose: true
28 changes: 0 additions & 28 deletions .github/workflows/swift.yml

This file was deleted.

49 changes: 49 additions & 0 deletions .github/workflows/upload-assets.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Upload Assets
on:
release:
types: [published]

jobs:
build:
name: Upload Assets
runs-on: macOS-latest
env:
TMPDIR: /tmp/.complex.xcframework.build

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Build
run: |
./scripts/xcframework.sh -output ${TMPDIR}/Complex.xcframework
- name: Create Zip
run: |
cd ${TMPDIR}
zip -rX Complex.xcframework.zip Complex.xcframework
- name: Upload Zip
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ${{ env.TMPDIR }}/Complex.xcframework.zip
asset_name: Complex.xcframework.zip
asset_content_type: application/zip

- name: Create Tar
run: |
cd ${TMPDIR}
tar -zcvf Complex.xcframework.tar.gz Complex.xcframework
- name: Upload Tar
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ${{ env.TMPDIR }}/Complex.xcframework.tar.gz
asset_name: Complex.xcframework.tar.gz
asset_content_type: application/gzip
17 changes: 17 additions & 0 deletions .github/workflows/xcframework.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: XCFramework
on: [push, workflow_dispatch]

jobs:
build:
name: Build
runs-on: macOS-latest
env:
TMPDIR: /tmp/.complex.xcframework.build

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Build
run: |
./scripts/xcframework.sh -output ${TMPDIR}/Complex.xcframework
110 changes: 110 additions & 0 deletions .github/workflows/xcodebuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
name: Xcode Project
on: [push, workflow_dispatch]

jobs:
ios:
name: iOS
runs-on: macOS-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Build iOS
run: |
xcodebuild -project Complex.xcodeproj -scheme "Complex" -destination "generic/platform=iOS" -configuration Debug
- name: Build iOS Simulator
run: |
xcodebuild -project Complex.xcodeproj -scheme "Complex" -destination "generic/platform=iOS Simulator" -configuration Debug
- name: Test
run: |
IOS_SIM="$(xcrun simctl list devices available | grep "iPhone [0-9]" | sort -rV | head -n 1 | sed -E 's/(.+)[ ]*\([^)]*\)[ ]*\([^)]*\)/\1/' | awk '{$1=$1};1')"
if [ "${#IOS_SIM}" == "0" ]; then
IOS_SIM = "iPhone 12 Pro" # Fallback Simulator
fi
xcodebuild -project Complex.xcodeproj -scheme "Complex" -testPlan "ComplexTests" -destination "platform=iOS Simulator,name=$IOS_SIM" -configuration Debug ONLY_ACTIVE_ARCH=YES test
maccatalyst:
name: Mac Catalyst
runs-on: macOS-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Build
run: |
xcodebuild -project Complex.xcodeproj -scheme "Complex" -destination "generic/platform=macOS,variant=Mac Catalyst" -configuration Debug
- name: Test
run: |
xcodebuild -project Complex.xcodeproj -scheme "Complex" -testPlan "ComplexTests" -destination "platform=macOS,variant=Mac Catalyst" -configuration Debug ONLY_ACTIVE_ARCH=YES test
macos:
name: macOS
runs-on: macOS-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Build
run: |
xcodebuild -project Complex.xcodeproj -scheme "Complex macOS" -destination "generic/platform=macOS" -configuration Debug
- name: Test
run: |
xcodebuild -project Complex.xcodeproj -scheme "Complex macOS" -testPlan "Complex macOS Tests" -configuration Debug ONLY_ACTIVE_ARCH=YES test
tvos:
name: tvOS
runs-on: macOS-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Build tvOS
run: |
xcodebuild -project Complex.xcodeproj -scheme "Complex tvOS" -destination "generic/platform=tvOS" -configuration Debug
- name: Build tvOS Simulator
run: |
xcodebuild -project Complex.xcodeproj -scheme "Complex tvOS" -destination "generic/platform=tvOS Simulator" -configuration Debug
- name: Test
run: |
TVOS_SIM="$(xcrun simctl list devices available | grep "Apple TV" | sort -V | head -n 1 | sed -E 's/(.+)[ ]*\([^)]*\)[ ]*\([^)]*\)/\1/' | awk '{$1=$1};1')"
if [ "${#TVOS_SIM}" == "0" ]; then
TVOS_SIM = "Apple TV" # Fallback Simulator
fi
xcodebuild -project Complex.xcodeproj -scheme "Complex tvOS" -testPlan "Complex tvOS Tests" -destination "platform=tvOS Simulator,name=$TVOS_SIM" -configuration Debug ONLY_ACTIVE_ARCH=YES test
watchos:
name: watchOS
runs-on: macOS-11

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Build watchOS
run: |
xcodebuild -project Complex.xcodeproj -scheme "Complex watchOS" -destination "generic/platform=watchOS" -configuration Debug
- name: Build watchOS Simulator
run: |
xcodebuild -project Complex.xcodeproj -scheme "Complex watchOS" -destination "generic/platform=watchOS Simulator" -configuration Debug
- name: Test
run: |
WATCHOS_SIM="$(xcrun simctl list devices available | grep "Apple Watch" | sort -rV | head -n 1 | sed -E 's/(.+)[ ]*\([^)]*\)[ ]*\([^)]*\)/\1/' | awk '{$1=$1};1')"
if [ "${#WATCHOS_SIM}" == "0" ]; then
WATCHOS_SIM = "Apple Watch Series 6 - 44mm" # Fallback Simulator
fi
xcodebuild -project Complex.xcodeproj -scheme "Complex watchOS" -testPlan "Complex watchOS Tests" -destination "platform=watchOS Simulator,name=$WATCHOS_SIM" -configuration Debug ONLY_ACTIVE_ARCH=YES test
9 changes: 4 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
Complex.xcodeproj/project.xcworkspace/xcuserdata
Complex.xcodeproj/project.xcworkspace
Complex.xcodeproj/xcuserdata
.swiftpm
Carthage
gyb.pyc

.build
IDEWorkspaceChecks.plist
.swiftpm
scripts/build
6 changes: 5 additions & 1 deletion .swiftlint.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
disabled_rules:
- file_length
- line_length
- cyclomatic_complexity
- type_body_length
- function_body_length
- type_name

opt_in_rules:
- anyobject_protocol
Expand Down Expand Up @@ -61,6 +62,9 @@ excluded:
- Tests/LinuxMain.swift
- Tests/ComplexTests/XCTestManifests.swift

function_body_length:
- 60 #warning

identifier_name:
excluded:
- i
Expand Down
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 773b538

Please sign in to comment.