-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DevOps] Add GitHub Actions for remote-config branch (#2982)
- Loading branch information
1 parent
c01f139
commit ba11818
Showing
1 changed file
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
name: remote-config-actions | ||
|
||
on: [pull_request, push] | ||
jobs: | ||
pre-process: | ||
name: Pre-process | ||
uses: vmware/singleton/.github/workflows/pre-process.yml@devops | ||
|
||
check-header: | ||
name: Check Header | ||
needs: pre-process | ||
if: needs.pre-process.outputs.were-only-docs-updated != 'yes' | ||
uses: vmware/singleton/.github/workflows/check.yml@devops | ||
|
||
unit-test: | ||
name: Unit Test | ||
runs-on: ubuntu-latest | ||
needs: pre-process | ||
if: needs.pre-process.outputs.were-only-docs-updated != 'yes' | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '17' | ||
- name: Unit test | ||
run: | | ||
./gradlew test | ||
# ./gradlew test jacocoTestReport | ||
# - name: Upload Codecov report | ||
# uses: codecov/codecov-action@v3 | ||
# with: | ||
# files: ./build/reports/jacoco.xml | ||
|
||
security-analysis: | ||
name: Security Analysis | ||
runs-on: ubuntu-latest | ||
needs: pre-process | ||
if: needs.pre-process.outputs.were-only-docs-updated != 'yes' | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '17' | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
with: | ||
languages: java | ||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v2 | ||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 | ||
|
||
codacy-analysis-cli: | ||
name: Codacy Analysis CLI | ||
runs-on: ubuntu-latest | ||
needs: pre-process | ||
if: needs.pre-process.outputs.were-only-docs-updated != 'yes' | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@main | ||
- name: Run Codacy Analysis CLI | ||
uses: codacy/codacy-analysis-cli-action@master | ||
with: | ||
output: results.sarif | ||
format: sarif | ||
gh-code-scanning-compat: true | ||
max-allowed-issues: 2147483647 | ||
- name: Upload SARIF results file | ||
uses: github/codeql-action/upload-sarif@main | ||
with: | ||
sarif_file: results.sarif | ||
|
||
smoke-test: | ||
name: Smoke Test | ||
runs-on: ubuntu-latest | ||
needs: pre-process | ||
if: needs.pre-process.outputs.were-only-docs-updated != 'yes' | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '17' | ||
- name: Smoke Test | ||
run: | | ||
echo "Smoke test commands here" | ||
performance-test: | ||
name: Performance Test | ||
runs-on: ubuntu-latest | ||
needs: pre-process | ||
if: needs.pre-process.outputs.were-only-docs-updated != 'yes' | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '17' | ||
- name: Set up Python3 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
- name: Performance Test | ||
run: | | ||
echo "Performance test commands here" | ||