Finalized drone pipeline (mostly)
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
367
.drone.yml
367
.drone.yml
@@ -1,70 +1,70 @@
|
|||||||
# kind: pipeline
|
kind: pipeline
|
||||||
# type: docker
|
type: docker
|
||||||
# name: Test Pipeline
|
name: Test Pipeline
|
||||||
|
|
||||||
# workspace:
|
workspace:
|
||||||
# path: /drone/grow
|
path: /drone/grow
|
||||||
|
|
||||||
# steps:
|
steps:
|
||||||
# - name: yarn install
|
- name: yarn install
|
||||||
# image: node:latest
|
image: node:latest
|
||||||
# commands:
|
commands:
|
||||||
# - yarn install
|
- yarn install
|
||||||
# - name: Code Style Checks
|
- name: Code Style Checks
|
||||||
# image: node:latest
|
image: node:latest
|
||||||
# commands:
|
commands:
|
||||||
# - yarn prettier
|
- yarn prettier
|
||||||
# - name: Lint
|
- name: Lint
|
||||||
# image: node:latest
|
image: node:latest
|
||||||
# commands:
|
commands:
|
||||||
# - yarn lint
|
- yarn lint
|
||||||
# - name: Unit Tests
|
- name: Unit Tests
|
||||||
# image: node:latest
|
image: node:latest
|
||||||
# commands:
|
commands:
|
||||||
# - yarn test
|
- yarn test
|
||||||
# - name: Send Test Status Notification
|
- name: Send Test Status Notification
|
||||||
# image: plugins/webhook
|
image: plugins/webhook
|
||||||
# settings:
|
settings:
|
||||||
# urls: https://lab.mifi.dev/hooks/9p65zpagctgkmndo8nwwm4199r
|
urls: https://lab.mifi.dev/hooks/9p65zpagctgkmndo8nwwm4199r
|
||||||
# content_type: application/json
|
content_type: application/json
|
||||||
# template: |
|
template: |
|
||||||
# {
|
{
|
||||||
# "icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
"icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
||||||
# "text": "[{{ repo.name }} - Build # {{ build.number }}] Code Quality Checks {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
"text": "[{{ repo.name }} - Build # {{ build.number }}] Code Quality Checks {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
||||||
# "username":"DroneBot"
|
"username":"DroneBot"
|
||||||
# }
|
}
|
||||||
# when:
|
when:
|
||||||
# status:
|
status:
|
||||||
# - success
|
- success
|
||||||
# - failure
|
- failure
|
||||||
# - name: Build
|
- name: Build
|
||||||
# image: node:latest
|
image: node:latest
|
||||||
# commands:
|
commands:
|
||||||
# - yarn build
|
- yarn build
|
||||||
# - name: Send Build Status Notifications
|
- name: Send Build Status Notifications
|
||||||
# image: plugins/webhook
|
image: plugins/webhook
|
||||||
# settings:
|
settings:
|
||||||
# urls: https://lab.mifi.dev/hooks/9p65zpagctgkmndo8nwwm4199r
|
urls: https://lab.mifi.dev/hooks/9p65zpagctgkmndo8nwwm4199r
|
||||||
# content_type: application/json
|
content_type: application/json
|
||||||
# template: |
|
template: |
|
||||||
# {
|
{
|
||||||
# "icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
"icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
||||||
# "text": "[{{ repo.name }} - Build # {{ build.number }}] Build package {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
"text": "[{{ repo.name }} - Build # {{ build.number }}] Build package {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
||||||
# "username":"DroneBot"
|
"username":"DroneBot"
|
||||||
# }
|
}
|
||||||
# when:
|
when:
|
||||||
# status:
|
status:
|
||||||
# - success
|
- success
|
||||||
# - failure
|
- failure
|
||||||
|
|
||||||
# trigger:
|
trigger:
|
||||||
# branch:
|
branch:
|
||||||
# - main
|
- main
|
||||||
# event:
|
event:
|
||||||
# # - pull_request
|
# - pull_request
|
||||||
# - push
|
- push
|
||||||
|
|
||||||
# ---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: Publish Pipeline
|
name: Publish Pipeline
|
||||||
@@ -73,76 +73,47 @@ workspace:
|
|||||||
path: /drone/grow
|
path: /drone/grow
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# - name: Build Package
|
- name: Build Package
|
||||||
# image: node:latest
|
image: node:latest
|
||||||
# commands:
|
|
||||||
# - yarn install
|
|
||||||
# - yarn build
|
|
||||||
# - name: Publish NPM
|
|
||||||
# image: node:20-alpine
|
|
||||||
# failure: ignore
|
|
||||||
# commands:
|
|
||||||
# - yarn publish -t ${DRONE_TAG}
|
|
||||||
# volumes:
|
|
||||||
# - name: npmrc
|
|
||||||
# path: /drone/grow/.npmrc
|
|
||||||
# - name: Publish NPM
|
|
||||||
# image: plugins/npm
|
|
||||||
# failure: ignore
|
|
||||||
# settings:
|
|
||||||
# username:
|
|
||||||
# from_secret: registry_username
|
|
||||||
# password:
|
|
||||||
# from_secret: registry_password
|
|
||||||
# registry: https://git.mifi.dev/api/packages/mifi/npm
|
|
||||||
# token:
|
|
||||||
# - from_secret: gitea_token
|
|
||||||
# volumes:
|
|
||||||
# - name: npmrc
|
|
||||||
# path: /drone/grow/.npmrc
|
|
||||||
# - name: Report NPM Publish Status
|
|
||||||
# image: plugins/webhook
|
|
||||||
# settings:
|
|
||||||
# urls: https://lab.mifi.dev/hooks/ccw34hdf7tgbjmzp96nptn938r
|
|
||||||
# content_type: application/json
|
|
||||||
# template: |
|
|
||||||
# {
|
|
||||||
# "icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
|
||||||
# "text": "[{{ repo.name }} - New npm package release {{tag}} from # {{ build.number }}] Deploy {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
|
||||||
# "username":"DroneBot"
|
|
||||||
# }
|
|
||||||
# when:
|
|
||||||
# status:
|
|
||||||
# - success
|
|
||||||
# - failure
|
|
||||||
- name: Publish Image
|
|
||||||
image: docker
|
|
||||||
failure: ignore
|
|
||||||
environment:
|
|
||||||
DOCKER_TOKEN:
|
|
||||||
from_secret: reg_token
|
|
||||||
commands:
|
commands:
|
||||||
- 'echo $DOCKER_TOKEN | docker login git.mifi.dev -u mifi --password-stdin'
|
- yarn install
|
||||||
- 'docker build -t git.mifi.dev/mifi/mifi/auth:latest -t git.mifi.dev/mifi/mifi/auth:${DRONE_TAG:-latest} .'
|
- yarn build
|
||||||
- docker push git.mifi.dev/mifi/mifi/auth:latest
|
- name: Publish NPM
|
||||||
|
image: node:20-alpine
|
||||||
|
failure: ignore
|
||||||
|
commands:
|
||||||
|
- yarn publish -t ${DRONE_TAG}
|
||||||
volumes:
|
volumes:
|
||||||
- name: dockersock
|
- name: npmrc
|
||||||
path: /var/run/docker.sock
|
path: /drone/grow/.npmrc
|
||||||
- name: dockerconfig
|
- name: Report NPM Publish Status
|
||||||
path: /drone/grow/.docker/config.json
|
image: plugins/webhook
|
||||||
# - name: Publish Image (plugin)
|
settings:
|
||||||
# image: plugins/docker
|
urls: https://lab.mifi.dev/hooks/ccw34hdf7tgbjmzp96nptn938r
|
||||||
# settings:
|
content_type: application/json
|
||||||
# auto_tag: true
|
template: |
|
||||||
# repo: git.mifi.dev/mifi/mifi/auth
|
{
|
||||||
# registry: git.mifi.dev
|
"icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
||||||
# debug: true
|
"text": "[{{ repo.name }} - New npm package release {{tag}} from # {{ build.number }}] Deploy {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
||||||
# ssh-agent-key:
|
"username":"DroneBot"
|
||||||
# from_secret: reg_token
|
}
|
||||||
# username: <token>
|
when:
|
||||||
# password:
|
status:
|
||||||
# from_secret: reg_token
|
- success
|
||||||
# secrets: [reg_token]
|
- failure
|
||||||
|
- name: Publish Image
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
auto_tag: true
|
||||||
|
repo: git.mifi.dev/mifi/mifi/auth
|
||||||
|
registry: git.mifi.dev
|
||||||
|
debug: true
|
||||||
|
ssh-agent-key:
|
||||||
|
from_secret: reg_token
|
||||||
|
username: <token>
|
||||||
|
password:
|
||||||
|
from_secret: reg_token
|
||||||
|
secrets: [reg_token]
|
||||||
- name: Report Image Publish Status
|
- name: Report Image Publish Status
|
||||||
image: plugins/webhook
|
image: plugins/webhook
|
||||||
settings:
|
settings:
|
||||||
@@ -170,79 +141,79 @@ volumes:
|
|||||||
host:
|
host:
|
||||||
path: /volume1/docker/beethoven/labs-auth/.npmrc
|
path: /volume1/docker/beethoven/labs-auth/.npmrc
|
||||||
|
|
||||||
# depends_on:
|
depends_on:
|
||||||
# - Test Pipeline
|
- Test Pipeline
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
branch:
|
# branch:
|
||||||
- main
|
# - main
|
||||||
event:
|
event:
|
||||||
- push
|
# - push
|
||||||
# - tag
|
- tag
|
||||||
|
|
||||||
# ---
|
---
|
||||||
# kind: pipeline
|
kind: pipeline
|
||||||
# type: docker
|
type: docker
|
||||||
# name: Deploy Pipeline
|
name: Deploy Pipeline
|
||||||
|
|
||||||
# workspace:
|
workspace:
|
||||||
# path: /drone/grow
|
path: /drone/grow
|
||||||
|
|
||||||
# steps:
|
steps:
|
||||||
# - name: Deploy Container
|
- name: Deploy Container
|
||||||
# image: docker
|
image: docker
|
||||||
# privileged: true
|
privileged: true
|
||||||
# environment:
|
environment:
|
||||||
# CONTAINER_PREFIX: staging
|
CONTAINER_PREFIX: staging
|
||||||
# HOST: area51.mifi.dev
|
HOST: area51.mifi.dev
|
||||||
# ROUTE_PREFIX: /auth
|
ROUTE_PREFIX: /auth
|
||||||
# PORT: 9001
|
PORT: 9001
|
||||||
# commands:
|
commands:
|
||||||
# - docker compose -f docker-compose.staging.yml pull
|
- docker compose -f docker-compose.staging.yml pull
|
||||||
# - docker compose -f docker-compose.staging.yml build --no-cache
|
- docker compose -f docker-compose.staging.yml build --no-cache
|
||||||
# - docker compose -f docker-compose.staging.yml rm --stop
|
- docker compose -f docker-compose.staging.yml rm --stop
|
||||||
# - docker compose -f docker-compose.staging.yml up --wait
|
- docker compose -f docker-compose.staging.yml up --wait
|
||||||
# volumes:
|
volumes:
|
||||||
# - name: env-secrets
|
- name: env-secrets
|
||||||
# path: /drone/grow/staging.env
|
path: /drone/grow/staging.env
|
||||||
# - name: dockersock
|
- name: dockersock
|
||||||
# path: /var/run/docker.sock
|
path: /var/run/docker.sock
|
||||||
# - name: dockerconfig
|
- name: dockerconfig
|
||||||
# path: /drone/grow/.docker/config.json
|
path: /drone/grow/.docker/config.json
|
||||||
# - name: Send Status Notifications
|
- name: Send Status Notifications
|
||||||
# image: plugins/webhook
|
image: plugins/webhook
|
||||||
# privileged: true
|
privileged: true
|
||||||
# settings:
|
settings:
|
||||||
# urls: https://lab.mifi.dev/hooks/ccw34hdf7tgbjmzp96nptn938r
|
urls: https://lab.mifi.dev/hooks/ccw34hdf7tgbjmzp96nptn938r
|
||||||
# content_type: application/json
|
content_type: application/json
|
||||||
# template: |
|
template: |
|
||||||
# {
|
{
|
||||||
# "icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
"icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
|
||||||
# "text": "[{{ repo.name }} - Build # {{ build.number }}] Deploy {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
"text": "[{{ repo.name }} - Build # {{ build.number }}] Deploy {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
|
||||||
# "username":"DroneBot"
|
"username":"DroneBot"
|
||||||
# }
|
}
|
||||||
# when:
|
when:
|
||||||
# status:
|
status:
|
||||||
# - success
|
- success
|
||||||
# - failure
|
- failure
|
||||||
|
|
||||||
# volumes:
|
volumes:
|
||||||
# - name: dockerconfig
|
- name: dockerconfig
|
||||||
# host:
|
host:
|
||||||
# path: /volume1/docker/dockerconfig.json
|
path: /volume1/docker/dockerconfig.json
|
||||||
# - name: dockersock
|
- name: dockersock
|
||||||
# host:
|
host:
|
||||||
# path: /var/run/docker.sock
|
path: /var/run/docker.sock
|
||||||
# - name: env-secrets
|
- name: env-secrets
|
||||||
# host:
|
host:
|
||||||
# path: /volume1/docker/beethoven/labs-auth/staging.env
|
path: /volume1/docker/beethoven/labs-auth/staging.env
|
||||||
|
|
||||||
# # depends_on:
|
depends_on:
|
||||||
# # - Test Pipeline
|
- Test Pipeline
|
||||||
|
|
||||||
# trigger:
|
trigger:
|
||||||
# branch:
|
# branch:
|
||||||
# - main
|
# - main
|
||||||
# event:
|
event:
|
||||||
# - push
|
# - push
|
||||||
# # - tag
|
- tag
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@mifi/auth",
|
"name": "@mifi/auth",
|
||||||
"version": "0.0.34",
|
"version": "0.0.35",
|
||||||
"author": "mifi (Mike Fitzpatrick)",
|
"author": "mifi (Mike Fitzpatrick)",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user