From 268108f019144026ed1ba17eb4cd7e32edcbc0bb Mon Sep 17 00:00:00 2001 From: canterburym Date: Mon, 3 Oct 2022 06:43:10 +0000 Subject: [PATCH 1/2] Update README.md --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index f28b74c2..7eac37d3 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,24 @@ -# 3GPP SA3-LI - Trial repository +# 3GPP SA3-LI Repository -Trial repository for the 3GPP SA3-LI working group. +Repository for the 3GPP SA3-LI working group. ## Guides and How-To -Visit the [Wiki](https://forge.etsi.org/rep/3GPP/SA3LI/wikis/home) for guides on how to: -* [Log in to the Forge](https://forge.etsi.org/rep/3GPP/SA3LI/wikis/Logging%20in%20to%20the%20Forge) -* [Join the project](https://forge.etsi.org/rep/3GPP/SA3LI/wikis/Joining%20a%20project) -* [Make a CR](https://forge.etsi.org/rep/3GPP/SA3LI/wikis/Making%20a%20CR) +Visit the [Wiki](https://forge.3gpp.org/rep/sa3/li/-/wikis/home) for guides on how to: +* [Log in to the Forge](https://forge.3gpp.org/rep/sa3/li/-/wikis/How-To/Log-in) +* [Join the project](https://forge.3gpp.org/rep/sa3/li/-/wikis/How-To/Join-a-project) +* [Make a CR](https://forge.3gpp.org/rep/sa3/li/-/wikis/How-To/Create-a-CR) Don't see a page on something you think should be documented? Then create one! ## Contribute to the discussion -Visit the [Issues](https://forge.etsi.org/rep/3GPP/SA3LI/issues) page and give +Visit the [Issues](https://forge.3gpp.org/rep/sa3/li/-/issues) page and give your thoughts and feedback on how we should use the Forge in SA3-LI. -Have a question that you don't see an Issue for? Then [create one](https://forge.etsi.org/rep/3GPP/SA3LI/issues/new?issue%5Bassignee_id%5D=&issue%5Bmilestone_id%5D=)! +Have a question that you don't see an Issue for? Then [create one](https://forge.3gpp.org/rep/sa3/li/-/issues/new?issue%5Bmilestone_id%5D=)! ## Licence (c) 2019, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). -All rights reserved. \ No newline at end of file +All rights reserved. -- GitLab From 00df66bffcbf4b34c2cf5c2d685dbde1321699f7 Mon Sep 17 00:00:00 2001 From: mark Date: Thu, 13 Oct 2022 14:45:11 +0100 Subject: [PATCH 2/2] Adding preflight check stage --- .gitlab-ci.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c54d1309..4786e7f9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,9 +6,19 @@ workflow: - if: $CI_COMMIT_BRANCH stages: + - preflight - check - build +preflight: + image: "forge.3gpp.org:5050/sa3/li/forgelib" + stage: preflight + rules: + - if: $CI_PIPELINE_SOURCE == 'merge_request_event' + interruptible: true + script: + - forgelib-preflight https://$CI_SERVER_HOST $CI_PROJECT_ID $CI_MERGE_REQUEST_IID + process_asn: image: "forge.3gpp.org:5050/sa3/li/asn1test:latest" stage: check @@ -24,7 +34,7 @@ process_xsd: - python3 testing/xsd_process.py generate_artefacts: - image: "forge.3gpp.org:5050/sa3/li/artefacts:latest" + image: "forge.3gpp.org:5050/sa3/li/forgelib" stage: build interruptible: true rules: -- GitLab