Skip to content

Commit bdd9925

Browse files
author
alrex
authored
infra: reduce build time by running longest job early (open-telemetry#626)
Currently builds take roughly 15 minutes, as the longest job (pypy3) isn't kicked off until one of the other jobs is finished running (max 5 concurrent jobs). Prioritizing the longer jobs first should reduce the build time by about 5 minutes.
1 parent 8c360a1 commit bdd9925

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.flake8

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ exclude =
1818
ext/opentelemetry-ext-jaeger/src/opentelemetry/ext/jaeger/gen/
1919
ext/opentelemetry-ext-jaeger/build/*
2020
docs/examples/opentelemetry-example-app/src/opentelemetry_example_app/grpc/gen/
21+
docs/examples/opentelemetry-example-app/build/*

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ language: python
55
cache: pip
66

77
python:
8+
- 'pypy3'
9+
- '3.8'
810
- '3.4'
911
- '3.5'
1012
- '3.6'
1113
- '3.7'
12-
- '3.8'
13-
- 'pypy3'
1414

1515
#matrix:
1616
# allow_failures:

0 commit comments

Comments
 (0)