aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-01-28 16:30:52 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-01-28 17:08:52 +0300
commitb76e9ee5bc229d6a92ee85cb6d7731d48634845c (patch)
treef71556c377ca30ab8fd3278d12d777ce18e676df /.travis.yml
parentREADME: update (diff)
downloadfr24feed-b76e9ee5bc229d6a92ee85cb6d7731d48634845c.tar.gz
fr24feed-b76e9ee5bc229d6a92ee85cb6d7731d48634845c.zip
Makefile: refactoring
Diffstat (limited to '')
-rw-r--r--.travis.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index 8ed2cdf..ce0d31a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,4 +1,4 @@
-language: minimal
+language: shell
os: linux
dist: bionic
@@ -15,7 +15,7 @@ addons:
sourceline: 'deb https://download.docker.com/linux/ubuntu "$(lsb_release -cs)" stable'
install:
- # GCR & BuildKit don't place nice together, e.g.:
+ # GCR & BuildKit don't play nice together, e.g.:
# https://github.com/moby/buildkit/issues/606
- echo '{}' | sudo tee /etc/docker/daemon.json
- sudo systemctl restart docker
@@ -23,12 +23,12 @@ install:
jobs:
include:
- name: Build native images
- script: make docker-build
+ script: make docker/build
- name: Build native images using Compose
- script: sudo make install-compose && make compose-build
+ script: sudo make compose/install && make compose/build
- name: Build multi-arch images
if: branch != master
- script: make builder/create && make buildx
+ script: make buildx/create && make buildx/build
- name: Build & publish multi-arch images
if: branch = master
- script: make login && make builder/create && make push
+ script: make login && make buildx/create && make buildx/push