History log of /openbmc/openbmc-build-scripts/jenkins/userid-validation (Results 26 – 49 of 49)
Revision Date Author Comments
# 476a7e99 06-Dec-2022 Patrick Williams <patrick@stwcx.xyz>

format shell scripts with beautysh

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Ie72911e0f57a1f69b0bf317de8c52947886e1303


# ec22c46f 15-Aug-2022 Andrew Geissler <geissonator@yahoo.com>

userid-validation: add microsoft

CLA out at:
https://drive.google.com/drive/folders/1VJbxFhwUEY96jCmzBkzkXFMJ0yRQw9wS

Change-Id: If396584ac80d03d2eebe9f88c1f5ea4ad4d8e208
Signed-off-by: Andrew Geis

userid-validation: add microsoft

CLA out at:
https://drive.google.com/drive/folders/1VJbxFhwUEY96jCmzBkzkXFMJ0yRQw9wS

Change-Id: If396584ac80d03d2eebe9f88c1f5ea4ad4d8e208
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>

show more ...


# 47b59dc8 18-Jul-2022 Patrick Williams <patrick@stwcx.xyz>

jenkins: add owners tool to userid-validation flow

Run the 'owners' tool during the userid-validation so that
owners and reviewers are automatically added by Jenkins.

Fix a few minor issues with th

jenkins: add owners tool to userid-validation flow

Run the 'owners' tool during the userid-validation so that
owners and reviewers are automatically added by Jenkins.

Fix a few minor issues with the 'owners' tool:

- Switch the 'push-args' option from BooleanOptionalAction since
this isn't supported in the Python version on the Jenkins
controller.

- Handle empty 'matchers' statements.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Ib496c5874a532299ecf821345c8c25d87a21f3f1

show more ...


# bc73b757 08-Jul-2022 Patrick Williams <patrick@stwcx.xyz>

userid-validation: add Phytium Technology

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Ic0197f6e40e5bbe71848a1d8e6dd96c4d479373b


# c491709c 20-May-2022 Andrew Geissler <geissonator@yahoo.com>

userid-validation: move to python3

Change-Id: Ib7e8e179f6f3992f700a186e8077fed9e068254b
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>


# 37052418 20-May-2022 Andrew Geissler <geissonator@yahoo.com>

move all build scripts to gerrit.openbmc.org

OpenBMC has transitioned the gerrit server to the openbmc.org domain

Change-Id: Ia65d5f968a4ffcf3bc65536148e90e42725c86aa
Signed-off-by: Andrew Geissler

move all build scripts to gerrit.openbmc.org

OpenBMC has transitioned the gerrit server to the openbmc.org domain

Change-Id: Ia65d5f968a4ffcf3bc65536148e90e42725c86aa
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>

show more ...


# 7031b334 13-Apr-2022 Jae Hyun Yoo <quic_jaehyoo@quicinc.com>

userid-validation: add quic

CLA is accepted. Add quic.

Signed-off-by: Jae Hyun Yoo <quic_jaehyoo@quicinc.com>
Change-Id: Ie54f9e8553e203679c0edccecb79057f9552ff22


# 123ffbe9 01-Mar-2022 Patrick Williams <patrick@stwcx.xyz>

userid-validation: add Depo Electronics

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I1c2d4dc6bd82933a819f0e2e3ddd77f8f2ae44eb


# 5d3031d6 16-Feb-2022 Ed Tanous <edtanous@google.com>

Fix shellcheck issue in userid-validation

Shellcheck correctly notes that that xs in comparisons are uneeded

```
[1mIn jenkins/userid-validation line 25:[0m [0mif [
"x${COMMITTER_EMAIL}" == "x" ];

Fix shellcheck issue in userid-validation

Shellcheck correctly notes that that xs in comparisons are uneeded

```
[1mIn jenkins/userid-validation line 25:[0m [0mif [
"x${COMMITTER_EMAIL}" == "x" ]; then[0m [32m ^-------------------^
SC2268 (style): Avoid x-prefix in comparisons as it no longer serves a
purpose.[0m

[1mDid you mean: [0m if [ "${COMMITTER_EMAIL}" == "" ]; then

[1mIn jenkins/userid-validation line 38:[0m [0mif [
"x${COMMITTER_USERNAME}" == "x" ]; then[0m [32m
^----------------------^ SC2268 (style): Avoid x-prefix in comparisons
as it no longer serves a purpose.[0m
```

Do as the robot commands.

Tested: Not sure how to test this, although it's pretty trivial.

Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: Idfa440f146e90f77e7b84eb0ff5f2d68f6b612c1

show more ...


# 76f25deb 10-Feb-2022 Gilbert Chen <gilbert.chen@arm.com>

ci-authorized: add arm

CLA is signed and out in our google docs repo

Signed-off-by: Gilbert Chen <gilbert.chen@arm.com>
Change-Id: I1a64b7ac7fbf37575476748ec3d964c7fb9163d5


# 8ac8e093 04-Jan-2022 Patrick Williams <patrick@stwcx.xyz>

userid-validation: reduce email noise from Jenkins

Jenkins userid-validation review causes a lot of low value emails.
Leverage the `--notify=NONE` option on the typical review indications
to reduce

userid-validation: reduce email noise from Jenkins

Jenkins userid-validation review causes a lot of low value emails.
Leverage the `--notify=NONE` option on the typical review indications
to reduce these emails.

```
--notify (-n) [NONE | OWNER | : Who to send email notifications to
OWNER_REVIEWERS | ALL] after the review is stored.
```

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I9ae596ff7d297ddfe04beb024132847c3d0d5a64

show more ...


# f8ee6f07 04-Jan-2022 Patrick Williams <patrick@stwcx.xyz>

userid-validation: simplify label arguments

Use the concise explicit arguments rather than constructing a label.

```
$ ssh openbmc.gerrit gerrit review --help
...
--ok-to-test N

userid-validation: simplify label arguments

Use the concise explicit arguments rather than constructing a label.

```
$ ssh openbmc.gerrit gerrit review --help
...
--ok-to-test N : score for Ok-To-Test
0 No score
+1 Ok to Test
```

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I0b1013de71b40d2bd20d6fb09a376e9b64400b9a

show more ...


# 2e93e4e6 30-Dec-2021 Patrick Williams <patrick@stwcx.xyz>

userid-validation: erase score after trigger

The newer versions of Gerrit seem to send events that include the
"Ok-To-Test=1" score on future comments by Jenkins itself. This can
cause Jenkins to i

userid-validation: erase score after trigger

The newer versions of Gerrit seem to send events that include the
"Ok-To-Test=1" score on future comments by Jenkins itself. This can
cause Jenkins to infinite loop itself by seeing its own "Validated=1"
comment _with_ an "Ok-To-Test=1" inside it. There isn't much capability
to filter this out in the Jenkins Gerrit Trigger Plugin. Attempt to
work around it by adding immediately erasing the Jenkins Ok-To-Test
score.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I93525b4d8ba7321a5669da4e0296a62cc342fb76

show more ...


# a9a79198 09-Dec-2021 Andrew Geissler <geissonator@yahoo.com>

userid-validation: add new erg company

CLA: https://drive.google.com/drive/folders/1b7Sd0rnur5vINpfLb9pTZ2ODZ5_shrxJ

Change-Id: I5aad80b65619a72995047a5210d1075dc7111efc
Signed-off-by: Andrew Geiss

userid-validation: add new erg company

CLA: https://drive.google.com/drive/folders/1b7Sd0rnur5vINpfLb9pTZ2ODZ5_shrxJ

Change-Id: I5aad80b65619a72995047a5210d1075dc7111efc
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>

show more ...


# 0cc575a4 07-Sep-2021 Andrew Geissler <geissonator@yahoo.com>

user-id-validation: add code-construct

https://gerrit.openbmc-project.xyz/admin/groups/96,members

Change-Id: I1f7b95b10efcaba932c883172344e7ef4c7cc6ad
Signed-off-by: Andrew Geissler <geissonator@ya

user-id-validation: add code-construct

https://gerrit.openbmc-project.xyz/admin/groups/96,members

Change-Id: I1f7b95b10efcaba932c883172344e7ef4c7cc6ad
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>

show more ...


# a56c7012 20-Aug-2021 Andrew Geissler <geissonator@yahoo.com>

ci-authorized: add 9elements

CLA is signed and out in our google docs repo

Change-Id: I031f52f75222cdbdb5b2c9c29f5b04609132518e
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>


# 46182106 08-Jun-2021 Andrew Geissler <geissonator@yahoo.com>

userid-validation: add pcpartner

Change-Id: I569bbab0fb061e9ebf3e21d43944c6e38077fdd7
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>


# e63bb548 04-Jun-2021 Andrew Geissler <geissonator@yahoo.com>

userid-validation: add in AMI

Change-Id: I8b57ef7e68cdd8fd5e98630480038c1207d04219
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>


# 2fde84b0 01-Apr-2021 Andrew Geissler <geissonator@yahoo.com>

userid-validation: add aspeed

Change-Id: I34bf363148359c56a86baeaea496e7fcc9466668
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>


# e13a7111 31-Mar-2021 Andrew Geissler <geissonator@yahoo.com>

userid-validation: add lenovo

Change-Id: I8e9ddf335b2f11ccba82adad651474384546c2d5
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>


# 870b41ab 27-Mar-2021 Patrick Williams <patrick@stwcx.xyz>

userid-validation: add fii

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Iaf303733035aa740bc2be9f1bb1681a173f4f314


# 6b69ff0a 17-Mar-2021 Andrew Geissler <geissonator@yahoo.com>

userid-validation: utilize python2

python3 is not available in the current jenkins docker container. Queue
this up for a future jenkins upgrade window.

Change-Id: I07e99a006e890e9e3cb7279c91923a56d

userid-validation: utilize python2

python3 is not available in the current jenkins docker container. Queue
this up for a future jenkins upgrade window.

Change-Id: I07e99a006e890e9e3cb7279c91923a56d0f572e8
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>

show more ...


# a4d19dcb 15-Mar-2021 Patrick Williams <patrick@stwcx.xyz>

jenkins/userid-validation: simplify and fix shellcheck errors

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I3320426809b1bc8860d9560457693eb1ea159e77


# 3c88e2d1 28-Jan-2021 Andrew Geissler <geissonator@yahoo.com>

ci: add script to validate user is approved

This is the script run within the following jenkins job:
https://jenkins.openbmc.org/job/CI-MISC/job/openbmc-userid-validation/

Put it into a source cont

ci: add script to validate user is approved

This is the script run within the following jenkins job:
https://jenkins.openbmc.org/job/CI-MISC/job/openbmc-userid-validation/

Put it into a source controlled script so others can review and update
it.

Tested:
- Extracted this into the jenkins job and ran it. Verified it worked as
expected.

Change-Id: I6deefcf6b443ea33b028ee25451e9377dabbfb22
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>

show more ...


12