"Fossies" - the Fresh Open Source Software Archive 
Member "apache-log4j-2.12.4-src/.travis.yml" (20 Dec 2021, 1098 Bytes) of package /linux/misc/apache-log4j-2.12.4-src.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Ansible YAML source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 # Licensed under the Apache License, Version 2.0 (the "License");
2 # you may not use this file except in compliance with the License.
3 # You may obtain a copy of the License at
4 #
5 # http://www.apache.org/licenses/LICENSE-2.0
6 #
7 # Unless required by applicable law or agreed to in writing, software
8 # distributed under the License is distributed on an "AS IS" BASIS,
9 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10 # See the License for the specific language governing permissions and
11 # limitations under the License.
12
13 language: java
14 # sudo enabled because sudo vms have more memory: https://docs.travis-ci.com/user/ci-environment/
15 sudo: true
16 # trusty required for oraclejdk9
17 dist: trusty
18
19 jdk:
20 - openjdk8
21 - openjdk11
22
23 env:
24 global:
25 JAVA_OPTS=-Xmx4g
26
27 install:
28 - ./mvnw --toolchains=./.travis-toolchains.xml install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
29
30 script:
31 - ./mvnw --toolchains=./.travis-toolchains.xml test -B
32
33 after_success:
34 - ./mvnw --show-version -pl !log4j-bom jacoco:prepare-agent test jacoco:report coveralls:report