This commit is contained in:
2023-05-08 14:52:26 -04:00
parent e417ab64d8
commit 42279b0592

View File

@@ -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
@@ -109,8 +109,13 @@ steps:
- failure - failure
- name: Publish Image - name: Publish Image
image: docker image: docker
environemnt:
- USERNAME:
from_secret: registry_username
- PASSWORD:
from_secret: registry_password
commands: commands:
- docker login git.mifi.dev - 'docker login -u ${USERNAME} -p ${PASSWORD} git.mifi.dev'
- 'docker build -t git.mifi.dev/mifi/mifi/auth:latest -t git.mifi.dev/mifi/mifi/auth:${DRONE_TAG} .' - 'docker build -t git.mifi.dev/mifi/mifi/auth:latest -t git.mifi.dev/mifi/mifi/auth:${DRONE_TAG} .'
- docker push git.mifi.dev/mifi/mifi/auth:latest - docker push git.mifi.dev/mifi/mifi/auth:latest
volumes: volumes:
@@ -145,8 +150,8 @@ 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:
@@ -167,6 +172,11 @@ steps:
- name: Deploy Container - name: Deploy Container
image: docker image: docker
privileged: true privileged: true
environment:
- CONTAINER_PREFIX: dev
- HOST: area51.mifi.dev
- ROUTE_PREFIX: /auth
- 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
@@ -174,7 +184,7 @@ steps:
- 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.secrets.env path: /drone/grow/staging.env
- name: dockersock - name: dockersock
path: /var/run/docker.sock path: /var/run/docker.sock
- name: dockerconfig - name: dockerconfig
@@ -205,10 +215,10 @@ volumes:
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.secrets.env path: /volume1/docker/beethoven/labs-auth/staging.env
depends_on: # depends_on:
- Test Pipeline # - Test Pipeline
trigger: trigger:
branch: branch: