Test LS Perf tests #3
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: Build master | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
ubuntu_build: | |
name: Build with tests on Ubuntu | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
concurrency: | |
group: ${{ github.head_ref }}-ubuntu | |
cancel-in-progress: true | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17.0.7' | |
- name: Initialize sub-modules | |
run: git submodule update --init | |
- name: Cache Gradle packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ github.sha }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Build with Gradle | |
run: | | |
export DISPLAY=':99.0' | |
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | |
./gradlew build --max-workers=2 --scan --no-daemon | |
find ~/.gradle/caches/ -name "*.lock" -type f -delete | |
windows_build: | |
name: Build with some tests on Windows | |
runs-on: windows-latest | |
timeout-minutes: 120 | |
concurrency: | |
group: ${{ github.head_ref }}-windows | |
cancel-in-progress: true | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17.0.7' | |
- name: configure Pagefile | |
uses: al-cheb/configure-pagefile-action@7e234852c937eea04d6ee627c599fb24a5bfffee | |
with: | |
minimum-size: 8GB | |
maximum-size: 16GB | |
disk-root: "D:" | |
- name: Initialize sub-modules | |
run: git submodule update --init | |
- name: Cache Gradle packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Build with Gradle | |
run: ./gradlew.bat build --continue -x :ballerina-lang:test -x :jballerina-integration-test:test -x :ballerina-shell:shell-cli:test -x :jballerina-debugger-integration-test:test -x createJavadoc --stacktrace -scan --console=plain --no-daemon --no-parallel | |
sonarcloud_scan: | |
name: Build with sonarcloud scan on Ubuntu | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
concurrency: | |
group: ${{ github.head_ref }}-sonarcloud | |
cancel-in-progress: true | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17.0.7' | |
- name: Initialize sub-modules | |
run: git submodule update --init | |
- name: Cache SonarCloud packages | |
uses: actions/cache@v1 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Cache Gradle packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ github.sha }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Create missing module folders | |
run: | | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/ballerina-formatter | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/ballerina | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/ballerina-langlib | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/compiler-plugins | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/composer | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/debug-adapter | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/distribution/zip/nballerina-tools | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/formatter | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/ls-extensions | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/project-api-test-artifact | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/language-server/modules/test-coverage | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/misc/testerina/modules/report-tools | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/misc/ballerina-config-schema-builder | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/ballerina-stringutils | |
mkdir -p /home/runner/work/ballerina-lang/ballerina-lang/semver-checker | |
- name: Build with Gradle | |
env: | |
packageUser: ${{ github.actor }} | |
packagePAT: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
if: "${{ env.SONAR_TOKEN != '' }}" | |
run: | | |
export DISPLAY=':99.0' | |
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | |
./gradlew build sonarqube --info --max-workers=2 --scan --no-daemon -x test -x check | |
find ~/.gradle/caches/ -name "*.lock" -type f -delete | |
- name: Print log message | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
if: "${{ env.SONAR_TOKEN == '' }}" | |
run: echo "Sonarcloud scan is skipped" | |