Draft
Conversation
Signed-off-by: Stelios Mavrommatakis <steliosmavr@cytech.gr>
Signed-off-by: Stelios Mavrommatakis <steliosmavr@cytech.gr>
Signed-off-by: Stelios Mavrommatakis <steliosmavr@cytech.gr>
manolisziCy
suggested changes
Apr 28, 2023
| @Override | ||
| public String getActionName() { | ||
| return "Remote"; | ||
| return "Remotee"; |
| msgLabel.setText(""); | ||
| ApplicationManager.getApplication().executeOnPooledThread(() -> { | ||
| var radHome = getPathFromTextField(radHomeField); | ||
| var radHome = getPathFromTextField(radHomeField); |
| var radHome = getPathFromTextField(radHomeField); | ||
| var radPath = getPathFromTextField(radPathField); | ||
| var radSelf = new RadSelf(radHome, radPath, myProject); | ||
| var radSelf = new RadSelf(radHome, radPath, myProject); |
hey |
Contributor
Author
chrome_klSdi30WtV.mp4 |
Contributor
Author
Stelios123
commented
Nov 30, 2023
src/main/java/network/radicle/jetbrains/radiclejetbrainsplugin/actions/rad/RadAuth.java
Show resolved
Hide resolved
Stelios123
commented
Nov 30, 2023
| @@ -31,7 +31,9 @@ public String getActionName() { | |||
| return "AuthCreateIdentity"; | |||
| } else if (action == RadAuthAction.UNLOCKED_IDENTITY) { | |||
| return "AuthUnlockedIdentity"; | |||
Stelios123
commented
Dec 4, 2023
| } else if (action == RadAuthAction.UNLOCKED_IDENTITY) { | ||
| return "AuthUnlockedIdentity"; | ||
| } | ||
| return ""; |
Stelios123
commented
Dec 4, 2023
| } | ||
| return ""; | ||
| } | ||
|
|
Stelios123
commented
Dec 4, 2023
| } else if (action == RadAuthAction.UNLOCKED_IDENTITY) { | ||
| return "AuthUnlockedIdentity"; | ||
| } | ||
| } else if (action == RadAuthAction.UNLOCKED_IDENTITY) { |
Stelios123
commented
Dec 11, 2023
| @Override | ||
| public String getActionName() { | ||
| return ""; | ||
| } |
Stelios123
commented
Dec 11, 2023
| } | ||
|
|
||
| public List<Peer> findTrackedPeers() { | ||
| var out = this.perform(); |
Stelios123
commented
Dec 11, 2023
| } | ||
|
|
||
| @Override | ||
| public ProcessOutput run() { |
Stelios123
commented
Dec 18, 2023
| @@ -31,7 +31,9 @@ public String getActionName() { | |||
| return "AuthCreateIdentity"; | |||
| } else if (action == RadAuthAction.UNLOCKED_IDENTITY) { | |||
| return "AuthUnlockedIdentity"; | |||
Stelios123
commented
Jan 29, 2024
| return "AuthCreateIdentity"; | ||
| } else if (action == RadAuthAction.UNLOCKED_IDENTITY) { | ||
| return "AuthUnlockedIdentity"; | ||
| } |
Contributor
Author
|
my comment |
|
Dokimastiko comment |
Contributor
Author
hello |
Signed-off-by: stelios maurommatakis <steliosmavr@cytech.gr>
Stelios123
commented
May 30, 2024
| @@ -0,0 +1 @@ | |||
| test file No newline at end of file | |||
Signed-off-by: stelios maurommatakis <steliosmavr@cytech.gr>
Signed-off-by: stelios maurommatakis <steliosmavr@cytech.gr>
Signed-off-by: stelios maurommatakis <steliosmavr@cytech.gr>
Signed-off-by: stelios maurommatakis <steliosmavr@cytech.gr>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
GitHub Metadata
The concourse implementation:
flyCLI from the concourse server that the CI broker has been configured withwith that in place, it has 3 (or maybe 2) roles to fill:
Setup: Create and unpause a pipeline in concourse
fly loginTrigger jobs
There are 2 alternative approaches we are considering:
flyCLI or concourse HTTP API)Triggering should only trigger the job in concourse without watching for the output. We need to capture the build ID from the output and then add this build ID to a data structure of "patches with pending builds".
Watch for results and update Patch with outcome
In terms of watching for the results, we should create some worker thread pool that:
In terms of "updating the Patch", we will be adding a simple comment to the Patch for now.
NOTES:
flyCLI and web app uses as opposed to wrapping theflyCLI itself.radicle-ci-brokerwrite to an sqlite database the information about pending jobs and forradicle-httpdto read from that (with an added benefit that theradcli could then read that information and incorporate that into the Terminal User Interface (TUI).