-
Notifications
You must be signed in to change notification settings - Fork 135
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
fix: better support for custom gitlab ports #1368
Conversation
Can you help me to run the following job in your private hosted gitlab and dump the output ? (feel free to redact things you find sensitive) job:
script:
- env | sort | grep -v '^FF_' | grep -v "^RUBY" | grep -v "^GITLAB_FEATURES" eg. this is the output i get from gitlab.com...
|
869b1fb
to
a2558a5
Compare
@ANGkeith, in reply to your request:
|
Unfortunately, this branch still isn't quite working for me. Please stand by. I'm making several local changes and starting to home in on the solution for working with self-hosted instances on non-default ports. I'll push to a fork once I have it stable. |
Please see PR #1369 |
@@ -28,19 +58,19 @@ export function init ({gitData, argv}: PredefinedVariablesOpts): {[name: string] | |||
CI_COMMIT_REF_SLUG: gitData.commit.REF_NAME.replace(/[^a-z\d]+/ig, "-").replace(/^-/, "").slice(0, 63).replace(/-$/, "").toLowerCase(), | |||
CI_COMMIT_TIMESTAMP: gitData.commit.TIMESTAMP, | |||
CI_PIPELINE_CREATED_AT: new Date().toISOString().split(".")[0] + "Z", | |||
CI_JOB_STARTED_AT: new Date().toISOString().split(".")[0] + "Z", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This var is redundant since it'll be ovewritten at a later stage
Line 462 in 47987f4
this._variables["CI_JOB_STARTED_AT"] = new Date().toISOString().split(".")[0] + "Z"; |
5e1f117
to
c8df96d
Compare
Co-authored-by: ANGkeith <angkeith@hotmail.sg>
Only print port if it's defined. Update expected string to match grammar correction in production source file.
8a04fa7
to
7e0570f
Compare
7e0570f
to
6bb7dec
Compare
6bb7dec
to
e16509c
Compare
Co-authored-by: Robert Alonso <17463757+rgalonso@users.noreply.github.com>
Quality Gate passedIssues Measures |
No description provided.