-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
44 lines (37 loc) · 1.24 KB
/
.travis.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
38
39
40
41
42
43
44
# travis-ci test main source and push to mirrors
language: bash
sudo: enabled
jobs:
include:
- os: linux
dist: focal
before_install: sudo apt-get update
arch:
- amd64
- arm64
# - armhf
# - os: osx
# osx_image: xcode12.1
# before_install: brew update -f
install:
- sudo git clone https://github.com/casjay-dotfiles/scripts "/usr/local/share/CasjaysDev/scripts"; sudo rm -Rf /usr/local/share/CasjaysDev/scripts/.git
- sudo /usr/local/share/CasjaysDev/scripts/install.sh
- sudo ./tests/travis-ci.sh
#services:
# - docker
#before_install:
# - docker pull archlinux
# - docker pull centos
# - docker pull debian
# - docker pull fedora
# - docker pull ubuntu
#script:
# - docker run --rm -v $(pwd):/scripts -it archlinux /bin/bash -c /scripts/tests/docker-pacman.sh
# - docker run --rm -v $(pwd):/scripts -it centos /bin/bash -c /scripts/tests/docker-yum.sh
# - docker run --rm -v $(pwd):/scripts -it fedora /bin/bash -c /scripts/tests/docker-dnf.sh
# - docker run --rm -v $(pwd):/scripts -it debian /bin/bash -c /scripts/tests/docker-apt.sh
# - docker run --rm -v $(pwd):/scripts -it ubuntu /bin/bash -c /scripts/tests/docker-apt.sh
notifications:
email:
on_failure: never
on_success: never