-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
46 lines (39 loc) · 785 Bytes
/
.travis.yml
File metadata and controls
46 lines (39 loc) · 785 Bytes
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
38
39
40
41
42
43
44
45
46
language: clojure
dist: noble
addons:
apt:
packages:
- gzip
jdk: openjdk17
rvm:
- 2.6
stages:
- name: test
if: branch = develop
- name: publish
if: tag IS present
cache: bundler
jobs:
include:
- stage: build
name: "Build & Test"
script:
- lein test
- stage: test
install:
- lein deps
- lein pom
script:
- lein test
- stage: publish
install:
- lein deps
- lein pom
script: lein test
deploy:
provider: script
script: lein deploy
cleanup: false
on:
tags: true
all_branches: true