-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
41 lines (36 loc) · 866 Bytes
/
.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
language: go
go:
- 1.x
arch: arm64-graviton2
virt: vm
os: linux
dist: focal
group: edge
env:
global:
- BUILDKIT_PROGRESS=plain
- GOTEST_SHORT=true
- DOCKER_CLI_EXPERIMENTAL=enabled
before_install:
- ./.travis/linux_travis_arm64_setup.sh
# Group tests to break up travis-CI build so it doesn't hit time limit.
jobs:
include:
- name: testcmd tests
script: make testcmd
- name: testpkg tests except ddevapp
script: make testnotddevapp
- name: ddevapp tests
script: make testddevapp
- name: container tests
script: |
set -eu -o pipefail
for dir in containers/*/
do pushd $dir
echo "--- Build container $dir"
time make container DOCKER_ARGS=--no-cache
echo "--- Test container $dir"
time make test
popd
done
set +eu