Skip to content

feat: allow self-executable webmonitor scripts #371

feat: allow self-executable webmonitor scripts

feat: allow self-executable webmonitor scripts #371

Workflow file for this run

name: Build
on: [ push, pull_request ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ] #, macos-latest , windows-latest] # removed as they need alternative to xvfb-run!
steps:
- uses: browser-actions/setup-chrome@v1
- run: chrome --version
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: adopt
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Change wrapper permissions
run: chmod +x gradlew
- name: Install required packages
run: sudo apt-get install -y at-spi2-core
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: xvfb-run ./gradlew build sonarqube --info