Skip to content

Commit ab99d30

Browse files
committedAug 21, 2021
chore: add initial pipeline
1 parent cd76e73 commit ab99d30

File tree

4 files changed

+168
-5
lines changed

4 files changed

+168
-5
lines changed
 

‎.gitlab-ci.yml

+99
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
---
2+
.configure-registry: &configure-registry
3+
- apk --quiet --no-progress --update --no-cache add git openssh
4+
- |
5+
{
6+
echo "//registry.npmjs.com/:_authToken=${NPM_TOKEN}"
7+
echo "@cloudgraph:registry=https://registry.npmjs.com/"
8+
} | tee -a .npmrc
9+
- |
10+
{
11+
echo "\"@cloudgraph:registry\" \"https://registry.npmjs.com/\""
12+
echo "\"//registry.npmjs.com/:_authToken\" \"${NPM_TOKEN}\""
13+
} | tee -a .yarnrc
14+
- NODE_ENV=cicd yarn install --frozen-lockfile --cache-folder .npm --prefer-offline
15+
default:
16+
image: node:16-alpine
17+
before_script:
18+
- *configure-registry
19+
cache:
20+
key: ${CI_COMMIT_REF_SLUG}
21+
paths:
22+
- .npm/
23+
- lib/
24+
25+
workflow:
26+
rules:
27+
- if: '$CI_PIPELINE_SOURCE == "push"'
28+
29+
variables:
30+
NPM_TOKEN: ${NPM_TOKEN}
31+
32+
stages:
33+
- build
34+
- test
35+
- release
36+
- publish
37+
- notify
38+
39+
build:
40+
image: node:16-alpine
41+
stage: build
42+
rules:
43+
- if: $CI_COMMIT_TAG
44+
when: never
45+
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE =~ /^chore\(release\)/'
46+
when: never
47+
- if: $CI_COMMIT_BRANCH
48+
when: always
49+
script:
50+
- yarn prepack
51+
52+
# test:
53+
# image: node:16-alpine
54+
# stage: test
55+
# rules:
56+
# - when: always
57+
# script:
58+
# - yarn test
59+
60+
semantic release:
61+
image: node:16-alpine
62+
stage: release
63+
rules:
64+
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE =~ /^chore\(release\)/'
65+
when: never
66+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
67+
variables:
68+
# Set git commit identity
69+
GIT_AUTHOR_NAME: "AutoCloud Deploy Bot"
70+
GIT_AUTHOR_EMAIL: "no-reply@loudcloud.dev"
71+
GIT_COMMITTER_NAME: "AutoCloud Deploy Bot"
72+
GIT_COMMITTER_EMAIL: "no-reply@loudcloud.dev"
73+
# Disable Husky for the git step of semantic release (handles all versions, env var name changed in v6)
74+
HUSKY_SKIP_HOOKS: 1
75+
HUSKY: 0
76+
before_script:
77+
- *configure-registry
78+
script:
79+
- npx semantic-release -r $CI_PROJECT_URL
80+
81+
.curlcmd: &curlcmd >
82+
curl
83+
-sS
84+
-X POST
85+
--data-urlencode "payload={\"attachments\":[{\"fallback\":\"$GITLAB_USER_NAME released new $CI_PROJECT_TITLE version $CI_COMMIT_TAG\",\"color\":\"good\",\"author_name\":\"$GITLAB_USER_NAME ($GITLAB_USER_LOGIN)\",\"author_icon\":\"$GITLAB_USER_AVATAR\",\"author_link\":\"https://gitlab.com/$GITLAB_USER_LOGIN\",\"title\":\"Version $CI_COMMIT_TAG of $CI_PROJECT_NAME released\",\"title_link\":\"$CI_PROJECT_URL/-/tags/$CI_COMMIT_TAG\",\"fields\":[{\"title\":\"Tag\",\"value\":\"<$CI_PROJECT_URL/commits/$CI_COMMIT_TAG|$CI_COMMIT_TAG>\",\"short\":true},{\"title\":\"Commit\",\"value\":\"<$CI_PROJECT_URL/tree/$CI_COMMIT_SHA|$CI_COMMIT_TITLE>\",\"short\":true}],\"footer\":\"$CI_PROJECT_NAME\",\"ts\":$( date +%s )}]}"
86+
$SLACK_API_ENDPOINT
87+
88+
notify:
89+
image: alpine:latest
90+
stage: notify
91+
rules:
92+
- if: $CI_COMMIT_TAG
93+
# Overwrite the default before script with a no-op action to disable the node specific actions
94+
before_script:
95+
- echo "noop"
96+
script:
97+
- apk add --no-cache curl
98+
- GITLAB_USER_AVATAR=$( echo $GITLAB_USER_EMAIL | tr '[:upper:]' '[:lower:]' | tr -d '[:space:]' | md5sum | awk -F' ' '{print $1}' | xargs -I{} echo 'https://www.gravatar.com/avatar/{}?s=80&d=identicon' )
99+
- *curlcmd

‎.npmignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
*
2+
!lib/**/*
3+
!package.json
4+
!LICENSE
5+
!AUTHORS
6+
!CHANGELOG.md
7+
!CODE_OF_CONDUCT.md
8+
!CODEOWNERS
9+
!CONTRIBUTING.md
10+
!README.md

‎.releaserc.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
branches:
3+
- name: master
4+
plugins:
5+
- "@semantic-release/commit-analyzer"
6+
- "@semantic-release/release-notes-generator"
7+
- - "@semantic-release/changelog"
8+
- changelogFile: CHANGELOG.md
9+
- - "@semantic-release/git"
10+
- assets:
11+
- CHANGELOG.md
12+
- package.json
13+
- - "@semantic-release/npm"
14+
- npmPublish: true
15+
- "@semantic-release/gitlab"
16+
verifyConditions:
17+
- "@semantic-release/changelog"
18+
- "@semantic-release/gitlab"
19+
- "@semantic-release/npm"
20+
prepare:
21+
- "@semantic-release/changelog"
22+
- "@semantic-release/npm"
23+
- - "@semantic-release/git"
24+
- message: "chore(release): ${nextRelease.version} \n\n${nextRelease.notes}"
25+
publish:
26+
- "@semantic-release/gitlab"
27+
- "@semantic-release/npm"
28+
success: false
29+
fail: false
30+
tagFormat: "${version}"

‎README.md

+29-5
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ Visit http://localhost:8000 from your browser to access the [Ratel console](http
4848
* [`cg launch [PROVIDER]`](#cg-launch-provider)
4949
* [`cg load [PROVIDER]`](#cg-load-provider)
5050
* [`cg scan [PROVIDER]`](#cg-scan-provider)
51+
* [`cg serve [PROVIDER]`](#cg-serve-provider)
5152

5253
## `cg help [COMMAND]`
5354

@@ -64,7 +65,7 @@ OPTIONS
6465
--all see all commands in CLI
6566
```
6667

67-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.2/src/commands/help.ts)_
68+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v2.2.3/src/commands/help.ts)_
6869

6970
## `cg init [PROVIDER]`
7071

@@ -90,7 +91,7 @@ EXAMPLES
9091
$ cg init aws -r [Specify resources to crawl]
9192
```
9293

93-
_See code: [src/commands/init.ts](https://github.com/autocloud/cloud-graph/blob/v0.0.1/src/commands/init.ts)_
94+
_See code: [src/commands/init.ts](https://github.com/autocloud/cloud-graph/blob/v0.0.2/src/commands/init.ts)_
9495

9596
## `cg launch [PROVIDER]`
9697

@@ -113,7 +114,7 @@ EXAMPLE
113114
$ cg launch
114115
```
115116

116-
_See code: [src/commands/launch.ts](https://github.com/autocloud/cloud-graph/blob/v0.0.1/src/commands/launch.ts)_
117+
_See code: [src/commands/launch.ts](https://github.com/autocloud/cloud-graph/blob/v0.0.2/src/commands/launch.ts)_
117118

118119
## `cg load [PROVIDER]`
119120

@@ -137,7 +138,7 @@ EXAMPLES
137138
$ cg load aws [Load data for AWS]
138139
```
139140

140-
_See code: [src/commands/load.ts](https://github.com/autocloud/cloud-graph/blob/v0.0.1/src/commands/load.ts)_
141+
_See code: [src/commands/load.ts](https://github.com/autocloud/cloud-graph/blob/v0.0.2/src/commands/load.ts)_
141142

142143
## `cg scan [PROVIDER]`
143144

@@ -163,5 +164,28 @@ EXAMPLES
163164
$ cg scan aws --no-serve [Do not start the query engine]
164165
```
165166

166-
_See code: [src/commands/scan.ts](https://github.com/autocloud/cloud-graph/blob/v0.0.1/src/commands/scan.ts)_
167+
_See code: [src/commands/scan.ts](https://github.com/autocloud/cloud-graph/blob/v0.0.2/src/commands/scan.ts)_
168+
169+
## `cg serve [PROVIDER]`
170+
171+
Serve a GraphQL query tool to query your CloudGraph data.
172+
173+
```
174+
USAGE
175+
$ cg serve [PROVIDER]
176+
177+
OPTIONS
178+
-d, --dgraph=dgraph Set where dgraph is running (default localhost:8080)
179+
-p, --port=port Set port to serve query engine
180+
-q, --query-engine=query-engine Query engine to launch
181+
-s, --storage=storage Select a storage engine to use. Currently only supports Dgraph
182+
--dev Turn on developer mode
183+
--directory=directory Set the folder where CloudGraph will store data. (default cg)
184+
--no-serve Set to false to not serve a query engine
185+
186+
EXAMPLE
187+
$ cg serve
188+
```
189+
190+
_See code: [src/commands/serve.ts](https://github.com/autocloud/cloud-graph/blob/v0.0.2/src/commands/serve.ts)_
167191
<!-- commandsstop -->

0 commit comments

Comments
 (0)
Please sign in to comment.