Skip to content

M5l4 cassandra

M5l4 cassandra #72

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: 'CI-build'
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- 'main'
- 'master'
- 'v-*'
pull_request:
types:
- opened
- reopened
- synchronize
branches:
- 'main'
- 'master'
- 'v-*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
runs-on: ubuntu-22.04
# runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
# https://github.com/actions/runner-images/issues/675
- name: Hack sources.list
run: sudo sed -i 's|http://azure.archive.ubuntu.com/ubuntu/|http://mirror.arizona.edu/ubuntu/|g' /etc/apt/sources.list
- name: Install curl-dev
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev
- name: Run Tests
uses: gradle/gradle-build-action@v2
with:
gradle-version: 7.6.2
arguments: check -i
# - name: List Tests
# run: ls .;echo "---build";ls build/;echo "---test-results"; ls build/test-results/;echo "---jvmTest"; ls build/test-results/jvmTest/
#
# - name: Test Report
# uses: dorny/test-reporter@v1
# if: success() || failure()
# with:
# name: Unit Test Results
# path: build/test-results/**/*.xml
# reporter: java-junit