Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI for Subrepos #44

Merged
merged 35 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
9152351
fixing subrepos
leogdion Aug 21, 2024
4298870
git subrepo push Packages/Ngrokit --force
leogdion Aug 21, 2024
8473db2
git subrepo push Packages/SublimationBonjour --force
leogdion Aug 21, 2024
273284b
git subrepo push Packages/SublimationNgrok --force
leogdion Aug 21, 2024
6c30080
git subrepo push Packages/SublimationService --force
leogdion Aug 21, 2024
5254822
git subrepo push Packages/SublimationVapor --force
leogdion Aug 21, 2024
9881d86
fixing ci for Xcode 16.1
leogdion Aug 21, 2024
0828f87
git subrepo push Packages/Ngrokit
leogdion Aug 21, 2024
6cd5e17
git subrepo push Packages/SublimationBonjour
leogdion Aug 21, 2024
569fd87
git subrepo push Packages/SublimationNgrok
leogdion Aug 21, 2024
0fb7ea2
git subrepo push Packages/SublimationService
leogdion Aug 21, 2024
258d364
git subrepo push Packages/SublimationVapor
leogdion Aug 21, 2024
82f314d
fixing search path
leogdion Aug 21, 2024
e85b55b
git subrepo push Packages/Ngrokit
leogdion Aug 21, 2024
cb3b051
git subrepo push Packages/SublimationBonjour
leogdion Aug 21, 2024
1231b76
git subrepo push Packages/SublimationNgrok
leogdion Aug 21, 2024
5e8eb2b
git subrepo push Packages/SublimationService
leogdion Aug 21, 2024
5b9d765
git subrepo push Packages/SublimationVapor
leogdion Aug 21, 2024
bfd606a
fixing references in packages
leogdion Aug 21, 2024
9f472ee
git subrepo push Packages/SublimationBonjour
leogdion Aug 21, 2024
7717884
git subrepo push Packages/SublimationNgrok
leogdion Aug 21, 2024
e75b44e
git subrepo push Packages/SublimationService
leogdion Aug 21, 2024
235d3c0
git subrepo push Packages/SublimationVapor
leogdion Aug 21, 2024
0db16a5
fixing iOS version
leogdion Aug 22, 2024
f66b445
git subrepo push Packages/Ngrokit
leogdion Aug 22, 2024
f12e707
git subrepo push Packages/SublimationBonjour
leogdion Aug 22, 2024
97ddc5e
git subrepo push Packages/SublimationNgrok
leogdion Aug 22, 2024
a2e5f48
git subrepo push Packages/SublimationService
leogdion Aug 22, 2024
dba1f53
git subrepo push Packages/SublimationVapor
leogdion Aug 22, 2024
aabd322
disable CodeQL
leogdion Aug 22, 2024
b0a83ef
git subrepo push Packages/Ngrokit
leogdion Aug 22, 2024
b5366b6
git subrepo push Packages/SublimationBonjour
leogdion Aug 22, 2024
9fb1052
git subrepo push Packages/SublimationNgrok
leogdion Aug 22, 2024
803d109
git subrepo push Packages/SublimationService
leogdion Aug 22, 2024
c7629b9
git subrepo push Packages/SublimationVapor
leogdion Aug 22, 2024
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
144 changes: 0 additions & 144 deletions .github/workflows/Ngrokit.yml

This file was deleted.

20 changes: 10 additions & 10 deletions .github/workflows/Sublimation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: swift test --enable-code-coverage
- uses: sersoft-gmbh/swift-coverage-action@v4
id: coverage-files
with:
with:
fail-on-empty-output: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
Expand All @@ -48,9 +48,9 @@ jobs:
strategy:
matrix:
include:
- xcode: "/Applications/Xcode_16_beta_5.app"
- xcode: "/Applications/Xcode_16.1.app"
os: macos-14
iOSVersion: "18.0"
iOSVersion: "18.1"
watchOSVersion: "11.0"
watchName: "Apple Watch Ultra 2 (49mm)"
iPhoneName: "iPhone 15 Pro Max"
Expand All @@ -67,7 +67,7 @@ jobs:
restore-keys: |
${{ matrix.os }}-build-${{ env.cache-name }}-${{ matrix.xcode }}-
- name: Cache mint
if: startsWith(matrix.xcode,'/Applications/Xcode_16_beta_5')
if: startsWith(matrix.xcode,'/Applications/Xcode_16.1')
id: cache-mint
uses: actions/cache@v4
env:
Expand All @@ -82,9 +82,9 @@ jobs:
- 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
run: sudo xcode-select -s ${{ matrix.xcode }}/Contents/Developer || (sudo ls -1 /Applications | grep "Xcode")
- name: Install mint
if: startsWith(matrix.xcode,'/Applications/Xcode_16_beta_5')
if: startsWith(matrix.xcode,'/Applications/Xcode_16.1')
run: |
brew update
brew install mint
Expand All @@ -94,7 +94,7 @@ jobs:
run: swift test --enable-code-coverage
- uses: sersoft-gmbh/swift-coverage-action@v4
id: coverage-files-spm
with:
with:
fail-on-empty-output: true
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
Expand All @@ -106,12 +106,12 @@ jobs:
run: rm -rf .build
- name: Lint
run: ./scripts/lint.sh
if: startsWith(matrix.xcode,'/Applications/Xcode_16_beta_5')
if: startsWith(matrix.xcode,'/Applications/Xcode_16.1')
- name: Run iOS target tests
run: xcodebuild test -scheme ${{ env.PACKAGE_NAME }}-Package -sdk "iphonesimulator" -destination 'platform=iOS Simulator,name=${{ matrix.iPhoneName }},OS=${{ matrix.iOSVersion }}' -enableCodeCoverage YES build test
- uses: sersoft-gmbh/swift-coverage-action@v4
id: coverage-files-iOS
with:
with:
fail-on-empty-output: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
Expand All @@ -125,7 +125,7 @@ jobs:
run: xcodebuild test -scheme ${{ env.PACKAGE_NAME }}-Package -sdk "watchsimulator" -destination 'platform=watchOS Simulator,name=${{ matrix.watchName }},OS=${{ matrix.watchOSVersion }}' -enableCodeCoverage YES build test
- uses: sersoft-gmbh/swift-coverage-action@v4
id: coverage-files-watchOS
with:
with:
fail-on-empty-output: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
Expand Down
144 changes: 0 additions & 144 deletions .github/workflows/SublimationBonjour.yml

This file was deleted.

Loading