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

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


The following commit(s) were added to refs/heads/wicket-9.x by this push:
     new df01887985 Do not run JS tests on Github Actions
df01887985 is described below

commit df01887985937167bd58f4298aa1533b61edeee6
Author: Martin Tzvetanov Grigorov <[email protected]>
AuthorDate: Thu Jan 12 09:50:55 2023 +0200

    Do not run JS tests on Github Actions
    
    The tests hang since a while ...
    
    https://github.com/apache/wicket/actions/runs/3892116129/jobs/6652898002
    
    INFO]
    [INFO] Running "jshint:gymTestsJs" (jshint) task
    [INFO] >> 12 files lint free.
    [INFO]
    [INFO] Running "jshint:grunt" (jshint) task
    [INFO] >> 1 file lint free.
    [INFO]
    [INFO] Running "connect:server" (connect) task
    [INFO] Started connect web server on http://localhost:38887
    [INFO]
    [INFO] Running "qunit:all" (qunit) task
    Error: The operation was canceled.
    
    Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
    (cherry picked from commit bc70f127ff74f154890a35be906b55db5bdc8683)
---
 .github/workflows/maven.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 6dc1199623..f8a0dd2960 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -17,7 +17,7 @@ jobs:
       run: sudo apt-get install -y openjdk-11-jdk 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 libxrand [...]
 
     - name: Cache Maven packages
-      uses: actions/cache@v2
+      uses: actions/cache@v3
       with:
         path: ~/.m2
         key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -33,4 +33,4 @@ jobs:
         export PATH=$JAVA_HOME/bin:$PATH
         java -version
         mvn -version
-        mvn clean verify -Pjs-test
+        mvn clean verify

Reply via email to