mirror of
https://github.com/SignTools/SignTools.git
synced 2026-04-27 02:45:56 +03:00
[GH-ISSUE #235] filed to sign everytime #74
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/SignTools#74
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @MaJoRX0 on GitHub (Aug 18, 2022).
Original GitHub issue: https://github.com/SignTools/SignTools/issues/235
Logs
Run sudo xcode-select -s /Applications/Xcode_13.2.1.app
connect ECONNREFUSED 127.0.0.1:8080
Initializing dependencies...
Traceback (most recent call last):
File "/Users/runner/work/MAJORSIGN/MAJORSIGN/./sign.py", line 42, in run_process
Downloading job files...
result = subprocess.run(cmd, capture_output=capture, check=check, env=env, cwd=cwd, timeout=timeout)
File "/usr/local/Cellar/python@3.10/3.10.6_1/Frameworks/Python.framework/Versions/3.10/lib/python3.10/subprocess.py", line 524, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '('node', 'node-utils/download.js', '/jobs', '', 'job.tar')' returned non-zero exit status 3.
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/Users/runner/work/MAJORSIGN/MAJORSIGN/./sign.py", line 1155, in
node_download(secret_url + "/jobs", job_archive, capture=False)
File "/Users/runner/work/MAJORSIGN/MAJORSIGN/./sign.py", line 131, in node_download
return run_process(
File "/Users/runner/work/MAJORSIGN/MAJORSIGN/./sign.py", line 44, in run_process
raise (
Exception: {'stdout': '', 'stderr': ''}
Error: Process completed with exit code 1.
@ViRb3 commented on GitHub (Aug 18, 2022):
You are trying to download the IPA from the builder to the builder, that's most likely incorrect. You probably want to use the service's IP/URL. See the description of
SERVER_URLenvironment variable.@MaJoRX0 commented on GitHub (Aug 18, 2022):
i didn't understand u I'm running it in my home server linux what did I do wrong ?

@ViRb3 commented on GitHub (Aug 18, 2022):
https://github.com/SignTools/SignTools/blob/master/DETAILS.md
The web service runs on your own home server. The builder runs in GitHub's CI. You have set the
server_urlto localhost, which means that the GitHub CI cannot reach your home server (the CI will try to reach itself, because localhost). You need to put a publicly reachable address of your home server instead of localhost.@MaJoRX0 commented on GitHub (Aug 18, 2022):
since this topic is closed i opend another one #236