memEx/.drone.yml

84 lines
1.5 KiB
YAML
Raw Normal View History

2022-01-23 00:00:11 -05:00
kind: pipeline
type: docker
2022-07-25 19:31:54 -04:00
name: memex
2022-01-23 00:00:11 -05:00
steps:
2022-02-25 22:19:06 -05:00
- name: restore-cache
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
restore: true
mount:
- _build
- deps
- assets/node_modules/
2022-01-23 00:00:11 -05:00
- name: test
image: bitwalker/alpine-elixir-phoenix:1.13
environment:
2022-07-25 19:31:54 -04:00
TEST_DATABASE_URL: ecto://postgres:postgres@database/memex_test
2022-02-25 22:19:06 -05:00
HOST: testing.example.tld
2022-01-23 00:00:11 -05:00
commands:
- mix local.rebar --force
- mix local.hex --force
- mix deps.get
- npm install --prefix assets
- mix test
2022-02-25 22:19:06 -05:00
- name: build and publish stable
2022-02-12 02:38:15 -05:00
image: plugins/docker
settings:
2022-07-25 19:31:54 -04:00
repo: shibaobun/memex
2022-02-25 22:19:06 -05:00
username:
from_secret: docker_username
password:
from_secret: docker_password
2022-02-12 02:38:15 -05:00
tags: latest
2022-02-25 22:19:06 -05:00
when:
branch:
- stable
- name: build and publish tagged version
image: plugins/docker
settings:
2022-07-25 19:31:54 -04:00
repo: shibaobun/memex
2022-02-12 02:38:15 -05:00
username:
from_secret: docker_username
password:
from_secret: docker_password
2022-02-25 22:19:06 -05:00
tags:
- ${DRONE_TAG}
when:
event:
- tag
- name: rebuild-cache
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
rebuild: true
mount:
- _build
- deps
- assets/node_modules/
2022-02-12 02:38:15 -05:00
2022-01-23 00:00:11 -05:00
services:
- name: database
image: postgres:13
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
2022-02-25 22:19:06 -05:00
volumes:
- name: cache
host:
path: /tmp/drone-cache
- name: docker_sock
host:
path: /var/run/docker.sock