Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/maven/junit-junit-4.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lukfor authored Sep 24, 2023
2 parents a92a75d + 8cb03db commit d2dcfb8
Show file tree
Hide file tree
Showing 91 changed files with 1,107 additions and 1,384 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Create Release

on:
push:
tags:
- '*'
jobs:
build:

runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Build MIS
run: mvn install
- uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: "target/cloudgene-installer.sh"
token: ${{ secrets.GITHUB_TOKEN }}
23 changes: 23 additions & 0 deletions .github/workflows/maven-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Maven Test

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Run JUnit Tests
run: mvn install
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v2
2 changes: 1 addition & 1 deletion files/cloudgene
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ CLASS="cloudgene.mapred.CommandLineInterface"
cd $FILE_PATH

# execute cloudgene
java -cp $CLASS_PATH $CLASS "$@"
java -Dlog4j.configurationFile=config/log4j2.xml -cp $CLASS_PATH $CLASS "$@"
235 changes: 0 additions & 235 deletions files/cloudgene-daemon

This file was deleted.

44 changes: 0 additions & 44 deletions files/config/log4j.properties

This file was deleted.

Loading

0 comments on commit d2dcfb8

Please sign in to comment.