This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat-tck.git
The following commit(s) were added to refs/heads/main by this push:
new 6791e95 First attempt to run TCKs on a daily basis
6791e95 is described below
commit 6791e955281fe71b8c4297601f5affd9081771b7
Author: Mark Thomas <[email protected]>
AuthorDate: Mon Jul 22 11:51:29 2024 +0100
First attempt to run TCKs on a daily basis
---
.github/workflows/ci.yml | 52 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..f5724e8
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,52 @@
+# Licensed 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.
+
+name: TCK testing
+
+on:
+ schedule:
+ - cron: '5 8 * * *'
+
+env:
+ LC_ALL: en_US.UTF-8
+
+jobs:
+ JDK_OS_Matrix:
+ strategy:
+ fail-fast: false
+ matrix:
+ java: [ 17, 21 ]
+ os: [ ubuntu-latest, windows-latest, macos-latest ]
+ name: JDK${{ matrix.java }} ${{ matrix.os }}
+ runs-on: ${{ matrix.os }}
+ steps:
+ - name: Git Checkout
+ uses: actions/checkout@v4
+ - name: Set up Java
+ uses: actions/setup-java@v4
+ with:
+ java-version: ${{ matrix.java }}
+ distribution: zulu
+ - name: Build
+ run: mvn verify
+ continue-on-error:
+ true
+ - name: Upload logs
+ uses: actions/upload-artifact@v4
+ with:
+ name: JDK${{ matrix.java }}-${{ matrix.os }}-logs
+ path: |
+ el-tck/target/failsafe-reports/*
+ jsp-tck/target/failsafe-reports/*
+ servlet-tck/target/failsafe-reports/*
+ websocket-tck/target/failsafe-reports/*
+ retention-days: 7
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]