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

CLI support #723

Merged
merged 23 commits into from
Nov 18, 2021
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
199bcc0
Add CLI options
tomlokhorst Sep 30, 2021
4206585
Add print-command command
tomlokhorst Sep 30, 2021
b5f4c3e
Update notarize.sh
tomlokhorst Sep 30, 2021
f542942
Update notarize.sh
tomlokhorst Sep 30, 2021
8b6a977
Update notarize.sh
tomlokhorst Sep 30, 2021
97ec699
Remove input script files and rswift-lastrun
tomlokhorst Sep 30, 2021
57761d7
Remove output script files
tomlokhorst Sep 30, 2021
f888d92
Remove disable-input-output-files-validation
tomlokhorst Oct 5, 2021
af21095
Add --arguments to print-command
tomlokhorst Oct 6, 2021
fd0a7a6
Check for ACTION=indexbuild
tomlokhorst Oct 7, 2021
ba52777
Update checks.yml
tomlokhorst Oct 7, 2021
d3ea94e
Update scripts in example projects
tomlokhorst Oct 7, 2021
1ca91e8
Update workflows
tomlokhorst Nov 16, 2021
5ed62c3
Merge branch 'cli-support' into action-update
tomlokhorst Nov 16, 2021
dc4be20
Merge pull request #726 from mac-cain13/action-update
tomlokhorst Nov 16, 2021
38fb7c3
Use macOS 11 for check
tomlokhorst Nov 16, 2021
63cff67
Print warning when build phase has 'Based on dependency analysis' che…
tomlokhorst Nov 16, 2021
e6d2542
Make R.info for Info.plist generation optional
tomlokhorst Nov 17, 2021
d6fc184
Update documentation
tomlokhorst Nov 17, 2021
6921ced
Merge branch 'master' into cli-support
tomlokhorst Nov 17, 2021
7bbac12
Update installation documentation
tomlokhorst Nov 17, 2021
ca7f2a3
Merge branch 'master' into cli-support
tomlokhorst Nov 17, 2021
efa2cb3
Github action release on macOS 11
tomlokhorst Nov 17, 2021
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
Prev Previous commit
Next Next commit
Use macOS 11 for check
  • Loading branch information
tomlokhorst committed Nov 16, 2021
commit 38fb7c364a9662b71afca51da6b3e431f5d50133
8 changes: 4 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
unit-tests:
runs-on: macos-latest
runs-on: macos-11
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -26,7 +26,7 @@ jobs:
run: swift test -v

test-iOS:
runs-on: macos-latest
runs-on: macos-11
needs: build
steps:
- name: Checkout
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
run: fastlane scan --workspace "Examples/RswiftExamples.xcworkspace" --scheme "ResourceApp"

test-tvOS:
runs-on: macos-latest
runs-on: macos-11
needs: build
steps:
- name: Checkout
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
run: fastlane scan --workspace "Examples/RswiftExamples.xcworkspace" --scheme "ResourceApp-tvOS"

build:
runs-on: macos-latest
runs-on: macos-11
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down