You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run fwal/setup-swift@v1
with:
swift-version: 5.0
/usr/bin/gpg --import /home/runner/work/_temp/4f1928c9-cbb8-46a3-aa8f-d68335288a81
gpg: directory '/home/runner/.gnupg' created
gpg: keybox '/home/runner/.gnupg/pubring.kbx' created
gpg: /home/runner/.gnupg/trustdb.gpg: trustdb created
gpg: key D441C977412B37AD: public key "Swift Automatic Signing Key #1 <[email protected]>" imported
gpg: key 9F597F4D21A56D5F: public key "Swift 2.2 Release Signing Key <[email protected]>" imported
gpg: key 63BC1CFE91D306C6: public key "Swift 3.x Release Signing Key <[email protected]>" imported
gpg: key EF5430F071E1B235: public key "Swift 4.x Release Signing Key <[email protected]>" imported
gpg: key 7638F1FB2B2B08C4: public key "Swift Automatic Signing Key #2 <[email protected]>" imported
gpg: key 925CC1CCED3D1561: public key "Swift 5.x Release Signing Key <[email protected]>" imported
gpg: key FAF6989E1BC16FEA: public key "Swift Automatic Signing Key #3 <[email protected]>" imported
gpg: key 925CC1CCED3D1561: "Swift 5.x Release Signing Key <[email protected]>" 1 new signature
gpg: Total number processed: 8
gpg: imported: 7
gpg: new signatures: 1
/usr/bin/gpg --keyserver hkp://pool.sks-keyservers.net --refresh-keys Swift
gpg: refreshing 7 keys from hkp://pool.sks-keyservers.net
gpg: key FAF6989E1BC16FEA: "Swift Automatic Signing Key #3 <[email protected]>" not changed
gpg: key 925CC1CCED3D1561: "Swift 5.x Release Signing Key <[email protected]>" not changed
gpg: key 7638F1FB2B2B08C4: "Swift Automatic Signing Key #2 <[email protected]>" not changed
gpg: key EF5430F071E1B235: "Swift 4.x Release Signing Key <[email protected]>" not changed
gpg: key 63BC1CFE91D306C6: "Swift 3.x Release Signing Key <[email protected]>" not changed
gpg: key 9F597F4D21A56D5F: "Swift 2.2 Release Signing Key <[email protected]>" not changed
gpg: key D441C977412B37AD: "Swift Automatic Signing Key #1 <[email protected]>" not changed
gpg: Total number processed: 7
gpg: unchanged: 7
Error: Unexpected error, unable to continue. Please report at https://github.com/fwal/setup-swift/issues
Unexpected HTTP response: 404
Stacktrace:
Error: Unexpected HTTP response: 404
at /home/runner/work/_actions/fwal/setup-swift/v1/dist/index.js:8816:25
at Generator.next (<anonymous>)
at fulfilled (/home/runner/work/_actions/fwal/setup-swift/v1/dist/index.js:8721:58)
at processTicksAndRejections (internal/process/task_queues.js:93:5)
The "Swift 5.1 on ubuntu-latest" job failed with the same error.
The "Swift 5.1 on macos-latest" and "Swift 5.2 on macos-latest" jobs also failed, although the cause of the failures may be unrelated to this action because they occurred in the "Build" step. Nevertheless, I would appreciate any help in determining the cause of the failures.
I have uploaded a zip file of the full logs on Google Drive.
Summary
Edit
I just tested the following jobs:
jobs:
test_macOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build
- name: Run tests
run: swift test
test_linux:
strategy:
matrix:
image: ["swift:5.0", "swift:5.1", "swift:5.2", "swift:5.3", "swift:5.4"]
runs-on: ubuntu-latest
container: ${{ matrix.image }}
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build
- name: Run tests
run: swift test
All of these competed successfully, proving that my library does compile for Swift 5.0-5.4 on Linux and swift 5.3 on macOS.
The text was updated successfully, but these errors were encountered:
This seems to be the same problem as #196. Basically the linux version is incompatible with the swift version.
The reason it works in the second example is that it then is bundled with the correct linux version in the container.
@Peter-Schorn Hi! I've released some updates recently that hopefully helps resolving this, please check it out and feel free to reopen this issue if you continue to experience problems.
Describe the bug
I received an error in multiple jobs in the workflow for my RegularExpressions library (commit: c0dd27d):
Here is the output of some of the jobs that failed:
Swift 5.0 on ubuntu-latest
Set up job
Run fwal/setup-swift@v1
The "Swift 5.1 on ubuntu-latest" job failed with the same error.
The "Swift 5.1 on macos-latest" and "Swift 5.2 on macos-latest" jobs also failed, although the cause of the failures may be unrelated to this action because they occurred in the "Build" step. Nevertheless, I would appreciate any help in determining the cause of the failures.
I have uploaded a zip file of the full logs on Google Drive.
Summary
Edit
I just tested the following jobs:
All of these competed successfully, proving that my library does compile for Swift 5.0-5.4 on Linux and swift 5.3 on macOS.
The text was updated successfully, but these errors were encountered: