Skip to content

Commit

Permalink
Remove big endian build (as it fails due to time out)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinweismann committed Jun 9, 2020
1 parent 9da60b8 commit f2b3e81
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ matrix:
- os: osx
osx_image: xcode7.2
env: BUILDMODE=cmake-make-osx
- os: linux
env: BUILDMODE=ppcxenial
- os: windows
env: BUILDMODE=windows
- os: linux
Expand All @@ -50,16 +48,9 @@ before_script:
- if [[ "$BUILDMODE" = "cmake-make-linux" ]]; then sh cmake/GenerateMake.sh; cd build; fi
- if [[ "$BUILDMODE" = "cmake-make-osx" ]]; then sh cmake/GenerateMake.sh; cd build; fi
- if [[ "$BUILDMODE" = "windows" ]]; then cmake/GenerateVS2017.bat; cd build; fi
- if [[ "$BUILDMODE" = "ppcxenial" ]]; then
docker pull multiarch/qemu-user-static ;
docker pull multiarch/ubuntu-debootstrap:powerpc-xenial ;
docker run --rm --privileged multiarch/qemu-user-static --reset -p y ;
docker build -t ppc-xenial -f CI/Dockerfile . ;
fi

script:
- if [[ "$BUILDMODE" != "ppcxenial" ]]; then cmake --build .; fi
- if [[ "$BUILDMODE" == "cmake-make-linux" ]]; then ctest -V; cmake --build . --target lib3mf_memcheck; fi
- if [[ "$BUILDMODE" == "cmake-make-osx" ]]; then ctest -V; fi
- if [[ "$BUILDMODE" == "windows" ]]; then ctest -V ; fi
- if [[ "$BUILDMODE" == "ppcxenial" ]]; then docker run ppc-xenial; fi

0 comments on commit f2b3e81

Please sign in to comment.