Documentation Edit #3
Workflow file for this run
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
name: GCP CI/CD Pipeline | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
# Setup for Java projects | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: maven | |
# Build and deploy Java services | |
- name: Build and deploy Java services | |
run: | | |
SERVICE_NAMES=$(cat projects-changes-deploy.txt) | |
echo "Service Names: $SERVICE_NAMES" | |
for SERVICE_NAME in $(echo $SERVICE_NAMES | tr ',' ' '); do | |
echo "Building and deploying $SERVICE_NAME" | |
# Set the build context to the root directory | |
if [ -d "$SERVICE_NAME" ]; then | |
cd $SERVICE_NAME | |
if [ "$SERVICE_NAME" != "blogs-analyzer-ui" ]; then | |
mvn clean install -B -V | |
fi | |
cd .. | |
fi | |
done | |
# Setup for Angular projects | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '21' | |
# Install dependencies for Angular projects | |
- name: Install dependencies for Angular projects | |
run: | | |
SERVICE_NAMES=$(cat projects-changes-deploy.txt) | |
echo "Service Names: $SERVICE_NAMES" | |
for SERVICE_NAME in $(echo $SERVICE_NAMES | tr ',' ' '); do | |
echo "Processing Service: $SERVICE_NAME" | |
if [ -d "$SERVICE_NAME" ]; then | |
cd $SERVICE_NAME | |
if [ "$SERVICE_NAME" == "blogs-analyzer-ui" ]; then | |
npm install | |
fi | |
cd .. | |
fi | |
done | |
sonarcloud: | |
name: SonarCloud Analysis | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Setup for Java projects | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: maven | |
# Setup for Node.js | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '21' | |
# Sonar Analysis for Java projects | |
- name: Sonar Analysis for Java projects | |
run: | | |
SERVICE_NAMES=$(cat projects-changes-deploy.txt) | |
echo "Service Names: $SERVICE_NAMES" | |
for SERVICE_NAME in $(echo $SERVICE_NAMES | tr ',' ' '); do | |
echo "Processing Service: $SERVICE_NAME" | |
if [ -d "$SERVICE_NAME" ]; then | |
cd $SERVICE_NAME | |
if [ "$SERVICE_NAME" != "blogs-analyzer-ui" ]; then | |
mvn clean verify sonar:sonar -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=nashtech -Dsonar.branch.name=master | |
fi | |
cd .. | |
fi | |
done | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
# Sonar Analysis for Angular projects | |
- name: Sonar Analysis for Angular projects | |
run: | | |
SERVICE_NAMES=$(cat projects-changes-deploy.txt) | |
echo "Service Names: $SERVICE_NAMES" | |
for SERVICE_NAME in $(echo $SERVICE_NAMES | tr ',' ' '); do | |
echo "Processing Service: $SERVICE_NAME" | |
if [ -d "$SERVICE_NAME" ]; then | |
cd $SERVICE_NAME | |
if [ "$SERVICE_NAME" == "blogs-analyzer-ui" ]; then | |
npm install | |
npm test | |
npm install -g sonarqube-scanner | |
npm run sonar | |
fi | |
cd .. | |
fi | |
done | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |