-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitbucket-pipelines.yml
37 lines (37 loc) · 1.01 KB
/
bitbucket-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
pipelines:
default:
- step:
image: elixir:latest
name: Latest Elixir
script:
- mix local.hex --force
- mix local.rebar --force
- mix deps.get
- mix test
- step:
image: elixir:1.6-alpine
name: Elixir 1.6
script:
- apk add --no-cache openssl openssh-client
- mix local.hex --force
- mix local.rebar --force
- mix deps.get
- mix test
- step:
image: elixir:1.5-alpine
name: Elixir 1.5
script:
- apk add --no-cache openssl openssh-client
- mix local.hex --force
- mix local.rebar --force
- mix deps.get
- mix test
- step:
image: elixir:1.4-slim
name: Elixir 1.4
script:
- apt-get update && apt-get install -y openssl openssh-client
- mix local.hex --force
- mix local.rebar --force
- mix deps.get
- mix test