This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/master by this push:
new 8c047e2 Use TravisCI to run Wicket's Java & JS tests on ARM64
architecture
8c047e2 is described below
commit 8c047e20ac4993e31e355a8c969caa06a4a04503
Author: Martin Tzvetanov Grigorov <[email protected]>
AuthorDate: Wed Dec 9 16:54:30 2020 +0200
Use TravisCI to run Wicket's Java & JS tests on ARM64 architecture
---
.travis.yml | 46 +++++++++++++++++++++++++++++++++++++++++-----
1 file changed, 41 insertions(+), 5 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index da7091a..48a2e81 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,5 +1,41 @@
-language: node_js
-node_js:
- - 0.10
-git:
- depth: 10
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+os: linux
+dist: focal
+group: edge
+arch: arm64-graviton2
+virm: vm
+
+services: xvfb
+env:
+ - CHROMIUM=true
+
+cache:
+ directories:
+ - $HOME/.m2/repository
+
+before_install:
+ - lscpu
+ - sudo apt-get install -y chromium-browser fonts-ipafont-gothic
fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf gconf-service
libasound2 libatk1.0-0 libatk-bridge2.0-0 libc6 libcairo2 libcups2 libdbus-1-3
libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0
libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6
libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3
libxi6 libxrandr2 libxrender1 libxss1 [...]
+ - export JAVA_HOME="/usr/lib/jvm/java-11-openjdk-${TRAVIS_CPU_ARCH}"
+ - export PATH="$JAVA_HOME/bin:$PATH"
+ - java -version
+ - mvn -version
+
+script:
+ - mvn clean verify -Pjs-test