You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2020/12/15 13:07:19 UTC

[wicket] branch wicket-8.x updated: Use TravisCI to run Wicket's Java & JS tests on ARM64 architecture

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch wicket-8.x
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/wicket-8.x by this push:
     new 00e747c  Use TravisCI to run Wicket's Java & JS tests on ARM64 architecture
00e747c is described below

commit 00e747ce34a32b44c5866474e2686cf15f584a99
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Tue Dec 15 15:02:14 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..010529c 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-8-openjdk-${TRAVIS_CPU_ARCH}"
+  - export PATH="$JAVA_HOME/bin:$PATH"
+  - java -version
+  - mvn -version
+
+script: 
+  - mvn clean verify -Pjs-test