-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
191 additions
and
30 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,116 @@ | ||
name: 🧱 Build and Push | ||
run-name: 🧱 Build and Push ${{ github.ref_name }} | ||
env: | ||
bucket-name: cvs-services | ||
on: | ||
workflow_call: | ||
workflow_dispatch: | ||
inputs: | ||
ignore-test-failures: | ||
type: boolean | ||
description: Ignore Test Failures | ||
default: false | ||
upload-files: | ||
description: Upload files | ||
type: boolean | ||
default: true | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
id-token: write | ||
contents: write | ||
|
||
jobs: | ||
environment: | ||
name: 🧹 Prepare Environment | ||
runs-on: ubuntu-latest | ||
outputs: | ||
environment-name: ${{ steps.environment.outputs.environment-name }} | ||
environment-type: ${{ steps.environment.outputs.environment-type }} | ||
commit: ${{ steps.commit.outputs.commit }} | ||
language: ${{ steps.manifest.outputs.language }} | ||
liquibase: ${{ steps.manifest.outputs.liquibase }} | ||
package-name: ${{ steps.manifest.outputs.package-name }} | ||
|
||
steps: | ||
- name: 🪪 Get Credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
role-to-assume: ${{ secrets.CVS_MGMT_AWS_ROLE }} | ||
aws-region: ${{ vars.DVSA_AWS_REGION}} | ||
role-session-name: GHA_TagDevelop | ||
|
||
- name: 📥 Get Codebase | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.ref_name }} | ||
|
||
- name: ↕️ Get Environment Details | ||
id: environment | ||
uses: dvsa/cvs-github-actions/environment@develop | ||
with: | ||
environment: ${{ github.ref_name }} | ||
|
||
- name: Get Commit SHA | ||
id: commit | ||
run: | | ||
# Get the branch Commit ID | ||
commit_id=$(git rev-parse HEAD) | ||
echo "commit=${commit_id}" | ||
echo "commit=${commit_id}" >> $GITHUB_OUTPUT | ||
echo "Commit ID: ${commit_id}" >> $GITHUB_STEP_SUMMARY | ||
- name: 🗒️ Get Manifest Data | ||
id: manifest | ||
run: | | ||
# Get information from Manifest File | ||
echo "package-name=$(jq -r '.name' manifest.json)" >> $GITHUB_OUTPUT | ||
echo "language=$(jq -r '.language' manifest.json)" >> $GITHUB_OUTPUT | ||
echo "liquibase=$(jq -r '.liquibase' manifest.json)" >> $GITHUB_OUTPUT | ||
echo "package-name=$(jq -r '.name' manifest.json)" >> $GITHUB_STEP_SUMMARY | ||
echo "language=$(jq -r '.language' manifest.json)" >> $GITHUB_STEP_SUMMARY | ||
echo "liquibase=$(jq -r '.liquibase' manifest.json)" >> $GITHUB_STEP_SUMMARY | ||
build-service: | ||
name: 🧱 Build ${{ needs.environment.outputs.package-name }} | ||
runs-on: [self-hosted, Linux] | ||
needs: environment | ||
steps: | ||
- name: 🪪 Get Credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
role-to-assume: ${{ secrets.CVS_MGMT_AWS_ROLE }} | ||
aws-region: ${{ vars.DVSA_AWS_REGION }} | ||
role-session-name: GHA_BuildServices | ||
|
||
- name: 📥 Get Codebase | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.ref_name }} | ||
|
||
- name: 🏗️ Build Node Function | ||
uses: dvsa/cvs-github-actions/build-node-function@default | ||
if: ${{ needs.environment.outputs.language == 'node' }} | ||
with: | ||
commit-sha: ${{ needs.environment.outputs.commit }} | ||
branch: ${{ github.ref_name }} | ||
mysql_liquibase: ${{ needs.environment.outputs.liquibase }} | ||
mysql_user: ${{ secrets.MYSQL_USER }} | ||
mysql_password: ${{ secrets.MYSQL_PASS }} | ||
continue-on-error: ${{ inputs.ignore-test-failures }} | ||
|
||
- name: 🏗️ Build Java Function | ||
uses: dvsa/cvs-github-actions/build-java-function@develop | ||
if: ${{ needs.environment.outputs.language == 'java' }} | ||
|
||
- name: 📤 Upload hash zip to S3 | ||
if: ${{ inputs.upload-files == 'true' }} | ||
uses: dvsa/cvs-github-actions/hash-upload@develop | ||
with: | ||
commit-id: ${{ needs.environment.outputs.commit }} | ||
package-name: ${{ needs.environment.outputs.package-name }} | ||
environment-name: ${{ needs.environment.outputs.environment-name }} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,21 +1,18 @@ | ||
name: CI | ||
name: Continuous Integration | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- develop | ||
- 'release/*' | ||
pull_request: | ||
branches: | ||
- develop | ||
paths-ignore: | ||
- .github/** | ||
- manifest.json | ||
|
||
permissions: | ||
id-token: write | ||
contents: read | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
ci: | ||
uses: dvsa/cvs-github-actions/.github/workflows/node-ci.yaml@develop | ||
security: | ||
uses: dvsa/.github/.github/workflows/nodejs-security.yaml@v2 | ||
with: | ||
args: '--all-projects' | ||
secrets: | ||
CVS_MGMT_AWS_ROLE: ${{ secrets.CVS_MGMT_AWS_ROLE }} | ||
CVS_SERVICES_S3: ${{ secrets.CVS_SERVICES_S3 }} | ||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} |
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,63 @@ | ||
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: ☑ PR Checks | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
paths-ignore: | ||
- .github/** | ||
- manifest.json | ||
pull_request: | ||
branches: | ||
- develop | ||
paths-ignore: | ||
- .github/** | ||
- manifest.json | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
id-token: write | ||
contents: write | ||
|
||
jobs: | ||
build-and-push: | ||
name: 🧱 Build and Push | ||
uses: ./.github/workflows/build-and-push.yaml | ||
|
||
scanner: | ||
name: SonarQube Scan | ||
runs-on: [self-hosted, X64, macOS] | ||
steps: | ||
- name: Checkout Codebase | ||
uses: actions/checkout@v4 | ||
- name: Set up Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.nvmrc' | ||
- name: Get Credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
role-to-assume: ${{ secrets.CVS_MGMT_AWS_ROLE }} | ||
aws-region: ${{ secrets.DVSA_AWS_REGION }} | ||
role-session-name: GHA_SonarQube | ||
- name: Get Secrets | ||
uses: aws-actions/aws-secretsmanager-get-secrets@v1 | ||
with: | ||
secret-ids: sonarqube-gha | ||
parse-json-secrets: true | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Run SonarQube scanner | ||
run: | | ||
npm run test && \ | ||
npm run sonar-scanner -- \ | ||
-Dsonar.host.url=${{ env.SONARQUBE_GHA_URL }} \ | ||
-Dsonar.token=${{ env.SONARQUBE_GHA_TOKEN }} \ | ||
-Dsonar.login=${{ env.SONARQUBE_GHA_TOKEN }} \ | ||
-Dsonar.projectName=${{ github.repository }} \ | ||
-Dsonar.projectVersion=1.0.${{ github.run_id }} |