blob: 03b4b48d025bbc2635631f18352a26d53e5ca55a [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: SonarCloud Workflow
on: [push]
jobs:
sonarCloudTrigger:
if: github.repository == 'apache/incubator-daffodil'
name: SonarCloud Trigger
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
scala_version: [ '2.12.11']
steps:
############################################################
# Setup
############################################################
- name: Checkout Repository
uses: actions/checkout@v2.0.0
############################################################
# Build & Scan
############################################################
- name: Compile
run: $SBT compile test:compile it:compile
shell: bash
env:
SBT: sbt -J-Xms1024m -J-Xmx5120m -J-XX:ReservedCodeCacheSize=512m -J-XX:MaxMetaspaceSize=1024m ++${{ matrix.scala_version }} coverage
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}