-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
37 changed files
with
2,365 additions
and
7,925 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "swift" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
name: IPSWDownloads | ||
on: | ||
push: | ||
branches-ignore: | ||
- '*WIP' | ||
|
||
jobs: | ||
build-ubuntu: | ||
name: Build on Ubuntu | ||
env: | ||
PACKAGE_NAME: IPSWDownloads | ||
SWIFT_VER: ${{ matrix.swift-version }} | ||
runs-on: ${{ matrix.runs-on }} | ||
if: "!contains(github.event.head_commit.message, 'ci skip')" | ||
strategy: | ||
matrix: | ||
runs-on: [ubuntu-20.04, ubuntu-22.04] | ||
swift-version: [5.9] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Cache swift package modules | ||
id: cache-spm-linux | ||
uses: actions/cache@v3 | ||
env: | ||
cache-name: SPM | ||
with: | ||
path: .build | ||
key: ${{ env.cache-name }}-${{ runner.os }}-${{ env.SWIFT_VER }}-${{ hashFiles('Package.resolved') }}-${{ env.RELEASE_DOT }} | ||
restore-keys: | | ||
${{ env.cache-name }}-${{ runner.os }}-${{ env.SWIFT_VER }}-${{ hashFiles('Package.resolved') }} | ||
${{ env.cache-name }}-${{ runner.os }}-${{ env.SWIFT_VER }} | ||
- name: Set Ubuntu Release DOT | ||
run: echo "RELEASE_DOT=$(lsb_release -sr)" >> $GITHUB_ENV | ||
- name: Set Ubuntu Release NUM | ||
run: echo "RELEASE_NUM=${RELEASE_DOT//[-._]/}" >> $GITHUB_ENV | ||
- name: Set Ubuntu Codename | ||
run: echo "RELEASE_NAME=$(lsb_release -sc)" >> $GITHUB_ENV | ||
- name: Cache swift | ||
id: cache-swift-linux | ||
uses: actions/cache@v3 | ||
env: | ||
cache-name: swift | ||
with: | ||
path: swift-${{ env.SWIFT_VER }}-RELEASE-ubuntu${{ env.RELEASE_DOT }} | ||
key: ${{ env.cache-name }}-${{ runner.os }}-${{ env.SWIFT_VER }}-${{ env.RELEASE_DOT }} | ||
- name: Download Swift | ||
if: steps.cache-swift-linux.outputs.cache-hit != 'true' | ||
run: curl -O https://download.swift.org/swift-${SWIFT_VER}-release/ubuntu${RELEASE_NUM}/swift-${SWIFT_VER}-RELEASE/swift-${SWIFT_VER}-RELEASE-ubuntu${RELEASE_DOT}.tar.gz | ||
- name: Extract Swift | ||
if: steps.cache-swift-linux.outputs.cache-hit != 'true' | ||
run: tar xzf swift-${SWIFT_VER}-RELEASE-ubuntu${RELEASE_DOT}.tar.gz | ||
- name: Add Path | ||
run: echo "$GITHUB_WORKSPACE/swift-${SWIFT_VER}-RELEASE-ubuntu${RELEASE_DOT}/usr/bin" >> $GITHUB_PATH | ||
- name: Build | ||
run: swift build | ||
- name: Run tests | ||
run: swift test --enable-test-discovery --enable-code-coverage | ||
- name: Prepare Code Coverage | ||
run: llvm-cov export -format="lcov" .build/x86_64-unknown-linux-gnu/debug/${{ env.PACKAGE_NAME }}PackageTests.xctest -instr-profile .build/debug/codecov/default.profdata > info.lcov | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
flags: spm,${{ env.RELEASE_NAME }},${{ env.SWIFT_VER }} | ||
build-macos: | ||
name: Build on macOS | ||
env: | ||
PACKAGE_NAME: IPSWDownloads | ||
runs-on: ${{ matrix.runs-on }} | ||
if: "!contains(github.event.head_commit.message, 'ci skip')" | ||
strategy: | ||
matrix: | ||
include: | ||
- runs-on: macos-13 | ||
xcode: "/Applications/Xcode_15.0.1.app" | ||
iOSVersion: "17.0.1" | ||
watchOSVersion: "10.0" | ||
watchName: "Apple Watch Series 9 (41mm)" | ||
iPhoneName: "iPhone 15" | ||
- runs-on: macos-13 | ||
xcode: "/Applications/Xcode_15.1.app" | ||
iOSVersion: "17.2" | ||
watchOSVersion: "10.2" | ||
watchName: "Apple Watch Series 9 (45mm)" | ||
iPhoneName: "iPhone 15 Pro" | ||
- runs-on: macos-13-xlarge | ||
xcode: "/Applications/Xcode_15.2.app" | ||
iOSVersion: "17.2" | ||
watchOSVersion: "10.2" | ||
watchName: "Apple Watch Ultra 2 (49mm)" | ||
iPhoneName: "iPhone 15 Pro Max" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Cache swift package modules | ||
id: cache-spm-macos | ||
uses: actions/cache@v3 | ||
env: | ||
cache-name: cache-spm | ||
with: | ||
path: .build | ||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('Package.resolved') }} | ||
restore-keys: | | ||
${{ runner.os }}-build-${{ env.cache-name }}- | ||
${{ runner.os }}-build- | ||
${{ runner.os }}- | ||
- name: Cache mint | ||
if: ${{ github.event_name == 'pull_request' && ( github.base_ref == 'main' || endsWith( github.ref_name , 'Prep') ) && matrix.xcode == '/Applications/Xcode_15.2.app' }} | ||
id: cache-mint | ||
uses: actions/cache@v3 | ||
env: | ||
cache-name: cache-mint | ||
with: | ||
path: .mint | ||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('Mintfile') }} | ||
restore-keys: | | ||
${{ runner.os }}-build-${{ env.cache-name }}- | ||
${{ runner.os }}-build- | ||
${{ runner.os }}- | ||
- name: Set Xcode Name | ||
run: echo "XCODE_NAME=$(basename -- ${{ matrix.xcode }} | sed 's/\.[^.]*$//' | cut -d'_' -f2)" >> $GITHUB_ENV | ||
- name: Setup Xcode | ||
run: sudo xcode-select -s ${{ matrix.xcode }}/Contents/Developer | ||
- name: Install mint | ||
if: ${{ github.event_name == 'pull_request' && ( github.base_ref == 'main' || endsWith( github.ref_name , 'Prep') ) && matrix.xcode == '/Applications/Xcode_15.2.app' }} | ||
run: | | ||
brew update | ||
brew install mint | ||
# - name: Initialize CodeQL | ||
# if: startsWith(matrix.xcode,'/Applications/Xcode_15.1') | ||
# uses: github/codeql-action/init@v3 | ||
# with: | ||
# languages: ${{ matrix.language }} | ||
- name: Build | ||
run: swift build | ||
# - name: Perform CodeQL Analysis | ||
# if: startsWith(matrix.xcode,'/Applications/Xcode_15.1') | ||
# uses: github/codeql-action/analyze@v3 | ||
- name: Run Swift Package tests | ||
run: swift test -v --enable-code-coverage | ||
- uses: sersoft-gmbh/swift-coverage-action@v4 | ||
- name: Upload SPM to CodeCov.io | ||
run: bash <(curl https://codecov.io/bash) -F spm -F macOS -F ${XCODE_NAME} | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
- name: Clean up spm build directory | ||
run: rm -rf .build | ||
- name: Lint | ||
run: ./scripts/lint.sh | ||
if: ${{ github.event_name == 'pull_request' && ( github.base_ref == 'main' || endsWith( github.ref_name , 'Prep') ) && matrix.xcode == '/Applications/Xcode_15.2.app' }} | ||
- name: Run iOS target tests | ||
run: xcodebuild test -scheme IPSWDownloads -sdk iphonesimulator -destination 'platform=iOS Simulator,name=${{ matrix.iPhoneName }},OS=${{ matrix.iOSVersion }}' -enableCodeCoverage YES build test | ||
- uses: sersoft-gmbh/swift-coverage-action@v4 | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
flags: iOS,iOS${{ matrix.iOSVersion }},macOS,${{ env.XCODE_NAME }} | ||
- name: Run watchOS target tests | ||
run: xcodebuild test -scheme IPSWDownloads -sdk watchsimulator -destination 'platform=watchOS Simulator,name=${{ matrix.watchName }},OS=${{ matrix.watchOSVersion }}' -enableCodeCoverage YES build test | ||
- uses: sersoft-gmbh/swift-coverage-action@v4 | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
flags: watchOS,watchOS${{ matrix.watchOSVersion }},macOS,${{ env.XCODE_NAME }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# For most projects, this workflow file will not need changing; you simply need | ||
# to commit it to your repository. | ||
# | ||
# You may wish to alter this file to override the set of languages analyzed, | ||
# or to provide custom queries or build logic. | ||
# | ||
# ******** NOTE ******** | ||
# We have attempted to detect the languages in your repository. Please check | ||
# the `language` matrix defined below to confirm you have the correct set of | ||
# supported CodeQL languages. | ||
# | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
schedule: | ||
- cron: '16 9 * * 1' | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
# Runner size impacts CodeQL analysis time. To learn more, please see: | ||
# - https://gh.io/recommended-hardware-resources-for-running-codeql | ||
# - https://gh.io/supported-runners-and-hardware-resources | ||
# - https://gh.io/using-larger-runners | ||
# Consider using larger runners for possible analysis time improvements. | ||
runs-on: ${{ (matrix.language == 'swift' && 'macos-13') || 'ubuntu-latest' }} | ||
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ 'swift' ] | ||
# CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ] | ||
# Use only 'java-kotlin' to analyze code written in Java, Kotlin or both | ||
# Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both | ||
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Xcode | ||
run: sudo xcode-select -s /Applications/Xcode_15.1.app/Contents/Developer | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v3 | ||
with: | ||
languages: ${{ matrix.language }} | ||
# If you wish to specify custom queries, you can do so here or in a config file. | ||
# By default, queries listed here will override any specified in a config file. | ||
# Prefix the list here with "+" to use these queries and those in the config file. | ||
|
||
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs | ||
# queries: security-extended,security-and-quality | ||
|
||
|
||
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift). | ||
# If this step fails, then you should remove it and run the build manually (see below) | ||
- run: | | ||
echo "Run, Build Application using script" | ||
swift build | ||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v3 | ||
with: | ||
category: "/language:${{matrix.language}}" |
Oops, something went wrong.