Skip to content

Commit

Permalink
Merge pull request #49 from riemann/ghact
Browse files Browse the repository at this point in the history
Added GitHub Actions workflow
  • Loading branch information
jamtur01 committed Jun 25, 2022
2 parents 4e58052 + 70b85a1 commit b58d297
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 42 deletions.
42 changes: 0 additions & 42 deletions .circleci/config.yml

This file was deleted.

74 changes: 74 additions & 0 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
name: Riemann Clojure Client testing

on: [push]

jobs:
test:

strategy:
matrix:
java: [ '8', '11', '13', '15', '16', '17' ]
name: Java ${{ matrix.Java }}

runs-on: ubuntu-latest

services:
riemann:
image: riemannio/riemann:latest
ports:
- 5555:5555
- 5555:5555/udp
- 5556:5556
- 2003:2003

env:
JVM_OPTS: -Xmx3200m
LEIN_ROOT: nbd

steps:
- uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
cli: 1.10.1.693 # Clojure CLI based on tools.deps
lein: 2.9.1 # Leiningen
- name: Install deps
run: lein deps
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ matrix.java }}-maven-${{ hashFiles('**/project.clj') }}
- name: Run test2junit
run: lein test2junit
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v3
with:
name: Test Results (Java ${{ matrix.java }})
path: target/test2junit/

publish-test-results:
name: "Publish Tests Results"
needs: test
runs-on: ubuntu-latest
permissions:
checks: write
pull-requests: write
if: always()

steps:
- name: Download Artifacts
uses: actions/download-artifact@v2
with:
path: artifacts

- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
with:
files: "artifacts/**/*.xml"

0 comments on commit b58d297

Please sign in to comment.