-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
57 changed files
with
1,182 additions
and
1,432 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,34 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: macos-14 | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: '15.4' | ||
- uses: actions/checkout@v4 | ||
- name: Build | ||
run: xcodebuild -project Browsy.xcodeproj -scheme Browsy -sdk macosx CODE_SIGNING_ALLOWED=NO | ||
# Temporarily disabled until we have a way to run tests and sign the app. | ||
# - name: Test | ||
# run: xcodebuild -project Browsy.xcodeproj -scheme Browsy -sdk macosx CODE_SIGNING_ALLOWED=NO test | ||
# - name: Archive | ||
# run: xcodebuild -project Browsy.xcodeproj -scheme Browsy -sdk macosx -archivePath Browsy CODE_SIGNING_ALLOWED=NO archive | ||
# - name: Zip | ||
# run: zip -r Browsy.xcarchive.zip Browsy.xcarchive | ||
# - name: Upload | ||
# uses: actions/upload-artifact@v4 | ||
# with: | ||
# name: Browsy.xcarchive.zip | ||
# path: Browsy.xcarchive.zip |
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
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
Browsy.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
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,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
15 changes: 15 additions & 0 deletions
15
Browsy.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
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,15 @@ | ||
{ | ||
"originHash" : "e721da7f9826abdffcb6185e886155efa2514bd6234475f1afa893e29eb258d6", | ||
"pins" : [ | ||
{ | ||
"identity" : "sparkle", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/sparkle-project/Sparkle", | ||
"state" : { | ||
"revision" : "b456fd404954a9e13f55aa0c88cd5a40b8399638", | ||
"version" : "2.6.3" | ||
} | ||
} | ||
], | ||
"version" : 3 | ||
} |
103 changes: 0 additions & 103 deletions
103
Browsy.xcodeproj/xcuserdata/julionb.xcuserdatad/xcschemes/Browsy.xcscheme
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
Browsy.xcodeproj/xcuserdata/julionb.xcuserdatad/xcschemes/xcschememanagement.plist
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
{ | ||
"colors" : [ | ||
{ | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
Oops, something went wrong.