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

unknown ISA `XCLocalSwiftPackageReference Error when Xcode 15 #110

Open
piggy-park opened this issue Oct 5, 2023 · 0 comments
Open

unknown ISA `XCLocalSwiftPackageReference Error when Xcode 15 #110

piggy-park opened this issue Oct 5, 2023 · 0 comments

Comments

@piggy-park
Copy link

Recently i've updated xcode version to 15.0
and i faced this error

스크린샷 2023-10-05 오후 1 12 10

So i added update fastlane code, it worked
What i curious is this code is necessary?
Because it works without it

    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: '3.0'
        bundler-cache: true

i've really confused because of this sentence from readme
anyone using this action should set the bundler-cache parameter of the ruby/setup-ruby step to true (see [Example Usage](https://github.com/maierj/fastlane-action#example-usage)).

will fail

runs:
runs:
  using: "composite"
  steps:
    - name: bundle lock add platform
      shell: bash
      run: |
        bundle lock --add-platform x86_64-darwin-20
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: '3.0'
        bundler-cache: true
    - uses: maierj/[email protected]
      with:
        lane: 'flight'

will success

    - name: bundle lock add platform
      shell: bash
      run: |
        bundle lock --add-platform x86_64-darwin-20
    - name: update fastlane
      shell: bash
      run: |
        bundle update fastlane
        bundle exec fastlane update_plugins
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: '3.0'
        bundler-cache: true
    - uses: maierj/[email protected]
      with:
        lane: 'flight'
        verbose: true

will success

    - name: bundle lock add platform
      shell: bash
      run: |
        bundle lock --add-platform x86_64-darwin-20
    - name: update fastlane
      shell: bash
      run: |
        bundle update fastlane
        bundle exec fastlane update_plugins
    - uses: maierj/[email protected]
      with:
        lane: 'flight'
        verbose: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant