Message ID | 1614068904-29352-1-git-send-email-juraj.linkes@pantheon.tech (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [v3] ci: update arm64 Travis jobs to Graviton2 | expand |
Context | Check | Description |
---|---|---|
ci/iol-testing | success | Testing PASS |
ci/iol-mellanox-Functional | success | Functional Testing PASS |
ci/iol-intel-Performance | success | Performance Testing PASS |
ci/iol-intel-Functional | success | Functional Testing PASS |
ci/intel-Testing | success | Testing PASS |
ci/Intel-compilation | success | Compilation OK |
ci/iol-broadcom-Functional | success | Functional Testing PASS |
ci/iol-broadcom-Performance | success | Performance Testing PASS |
ci/checkpatch | success | coding style OK |
> -----Original Message----- > From: Juraj Linkeš <juraj.linkes@pantheon.tech> > Sent: Tuesday, February 23, 2021 4:28 PM > To: thomas@monjalon.net; david.marchand@redhat.com; > aconole@redhat.com; maicolgabriel@hotmail.com > Cc: dev@dpdk.org; Ruifeng Wang <Ruifeng.Wang@arm.com>; Honnappa > Nagarahalli <Honnappa.Nagarahalli@arm.com>; Juraj Linkeš > <juraj.linkes@pantheon.tech> > Subject: [PATCH v3] ci: update arm64 Travis jobs to Graviton2 > > Use only the newer Graviton2 environment in Travis CI instead of using the > older platform, which has intermittent issues: > 1. collect2: fatal error: ld terminated with signal 9 [Killed] 2. > ticketlock_autotest sometimes times out > > These failures hint at resource availability issues in container environments. > The Graviton2 environment is using VMs and these failures are not observed > in it. > > Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech> Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com> > --- > .travis.yml | 26 ++++++++++++++++---------- > 1 file changed, 16 insertions(+), 10 deletions(-)
Juraj Linkeš <juraj.linkes@pantheon.tech> writes: > Use only the newer Graviton2 environment in Travis CI instead of using > the older platform, which has intermittent issues: > 1. collect2: fatal error: ld terminated with signal 9 [Killed] > 2. ticketlock_autotest sometimes times out > > These failures hint at resource availability issues in container > environments. The Graviton2 environment is using VMs and these failures > are not observed in it. > > Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech> > --- Acked-by: Aaron Conole <aconole@redhat.com>
diff --git a/.travis.yml b/.travis.yml index 6a2181299f..7ed982ac07 100644 --- a/.travis.yml +++ b/.travis.yml @@ -122,10 +122,10 @@ jobs: - *aarch64_clang_packages # aarch64 gcc jobs - env: DEF_LIB="static" - arch: arm64 - compiler: gcc - - env: DEF_LIB="shared" RUN_TESTS=true - arch: arm64 + dist: focal + arch: arm64-graviton2 + virt: vm + group: edge compiler: gcc - env: DEF_LIB="shared" RUN_TESTS=true dist: focal @@ -134,7 +134,10 @@ jobs: group: edge compiler: gcc - env: DEF_LIB="shared" BUILD_DOCS=true - arch: arm64 + dist: focal + arch: arm64-graviton2 + virt: vm + group: edge compiler: gcc addons: apt: @@ -142,7 +145,10 @@ jobs: - *required_packages - *doc_packages - env: DEF_LIB="shared" ABI_CHECKS=true - arch: arm64 + dist: focal + arch: arm64-graviton2 + virt: vm + group: edge compiler: gcc addons: apt: @@ -151,10 +157,10 @@ jobs: - *libabigail_build_packages # aarch64 clang jobs - env: DEF_LIB="static" - arch: arm64 - compiler: clang - - env: DEF_LIB="shared" RUN_TESTS=true - arch: arm64 + dist: focal + arch: arm64-graviton2 + virt: vm + group: edge compiler: clang - env: DEF_LIB="shared" RUN_TESTS=true dist: focal
Use only the newer Graviton2 environment in Travis CI instead of using the older platform, which has intermittent issues: 1. collect2: fatal error: ld terminated with signal 9 [Killed] 2. ticketlock_autotest sometimes times out These failures hint at resource availability issues in container environments. The Graviton2 environment is using VMs and these failures are not observed in it. Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech> --- .travis.yml | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-)