Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JSPWIKI-1179 - Enhancement of CI/CD Pipeline with New GitHub Actions Workflows #299

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 90 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
# 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.

# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
# ******** NOTE ********

name: "CodeQL"

on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
schedule:
- cron: '16 7 * * 5'

permissions:
contents: read

jobs:
analyze:
permissions:
actions: read # for github/codeql-action/init to get workflow details
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/analyze to upload SARIF results
name: Analyze
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
language: [ 'java' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more...
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection

steps:
- name: Checkout repository
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
#- name: Autobuild
# uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

- run: mvn clean package -DskipTests -Drat.skip=true -Dcheckstyle.skip

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
31 changes: 31 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# 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.

name: 'Dependency Review'
on: [pull_request]

permissions:
contents: read

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v3
- name: 'Dependency Review'
uses: actions/dependency-review-action@v3
61 changes: 61 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# 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.

name: Java CI

on: [push, pull_request]

permissions:
contents: read

jobs:
build:

runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
# windows-latest is not used due to intermittent lucene failures
os: [ubuntu-latest, macos-latest]
# All LTS versions plus the current version
java: [ 11, 17 ]
experimental: [false]
# include:
# - java: 20-ea
# os: ubuntu-latest
# experimental: true
# - java: 20-ea
# os: windows-latest
# experimental: true
# - java: 20-ea
# os: macos-latest
# experimental: true
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -V --file pom.xml --no-transfer-progress -DtrimStackTrace=false -P-use-toolchains
Original file line number Diff line number Diff line change
Expand Up @@ -131,27 +131,28 @@ public void testCollectPropertiesFrom() {
public void testSetWorkDir() {
final Properties properties = new Properties();
final ServletContext servletContext = mock(ServletContext.class);
final File tmp = new File( "/tmp" );
Mockito.when(servletContext.getAttribute( "javax.servlet.context.tempdir" ) ).thenReturn( tmp );
final String expectedTmpDir = System.getProperty("java.io.tmpdir");

PropertyReader.setWorkDir( servletContext, properties );
Mockito.when(servletContext.getAttribute("javax.servlet.context.tempdir")).thenReturn(new File(expectedTmpDir));

// Test when the "jspwiki.workDir" is not set, it should get set to servlet's temporary directory
String workDir = properties.getProperty( "jspwiki.workDir" );
Assertions.assertEquals( tmp.getAbsolutePath(), workDir );
PropertyReader.setWorkDir(servletContext, properties);
String workDir = properties.getProperty("jspwiki.workDir");
Assertions.assertEquals(expectedTmpDir, workDir);

// Test when the "jspwiki.workDir" is set, it should remain as it is
properties.setProperty( "jspwiki.workDir", "/custom/dir" );
PropertyReader.setWorkDir( servletContext, properties );
workDir = properties.getProperty( "jspwiki.workDir" );
Assertions.assertEquals( "/custom/dir", workDir );
properties.setProperty("jspwiki.workDir", "/custom/dir");
PropertyReader.setWorkDir(servletContext, properties);
workDir = properties.getProperty("jspwiki.workDir");
Assertions.assertEquals("/custom/dir", workDir);

// Test when the servlet's temporary directory is null, it should get set to system's temporary directory
Mockito.when( servletContext.getAttribute( "javax.servlet.context.tempdir" ) ).thenReturn( null );
properties.remove( "jspwiki.workDir" );
PropertyReader.setWorkDir( servletContext, properties );
workDir = properties.getProperty( "jspwiki.workDir" );
Assertions.assertEquals( System.getProperty( "java.io.tmpdir" ), workDir );
Mockito.when(servletContext.getAttribute("javax.servlet.context.tempdir")).thenReturn(null);
properties.remove("jspwiki.workDir");
PropertyReader.setWorkDir(servletContext, properties);
workDir = properties.getProperty("jspwiki.workDir");
Assertions.assertEquals(expectedTmpDir, workDir);
}


}
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -764,6 +764,7 @@
<exclude>**/src/main/webapp/favicons/*.svg</exclude>
<exclude>**/src/overlay/launchers/tomcat/woas.app/Contents/*.plist</exclude>
<exclude>**/src/overlay/launchers/tomcat/woas.app/Contents/Resources/*.none</exclude>
<exclude>**/.eslintrc</exclude>

</excludes>
</configuration>
Expand Down