From 5b0101ee6f1b5c8d4f11f00d0de4b2d486dc9ad5 Mon Sep 17 00:00:00 2001 From: Shing Chan Date: Tue, 16 Jan 2024 21:42:35 +0000 Subject: [PATCH] ci: rm redundant workflows --- .github/workflows/gt3x.yml | 32 -------------------------------- .github/workflows/junit.yml | 35 ----------------------------------- 2 files changed, 67 deletions(-) delete mode 100644 .github/workflows/gt3x.yml delete mode 100644 .github/workflows/junit.yml diff --git a/.github/workflows/gt3x.yml b/.github/workflows/gt3x.yml deleted file mode 100644 index e532b505..00000000 --- a/.github/workflows/gt3x.yml +++ /dev/null @@ -1,32 +0,0 @@ -# 1. Test parsing gt3x v2 -# 2. Check output epoch files haven't changed - -name: gt3x - -on: - push: - branches: - - '**' - pull_request: - -jobs: - gt3x: - runs-on: ubuntu-latest - defaults: - run: - working-directory: src/accelerometer/java/ - - steps: - - uses: actions/checkout@v4 - - - name: Setup java - uses: actions/setup-java@v4 - with: - distribution: 'zulu' - java-version: '8' - - - name: Compile java files - run: javac -cp JTransforms-3.1-with-dependencies.jar *.java - - - name: Parse gt3x V2 file - run: java AccelerometerParser Tests/Resources/gt3xV1.gt3x npyOutput:True rawOutput:True timeZone:Brazil/West diff --git a/.github/workflows/junit.yml b/.github/workflows/junit.yml deleted file mode 100644 index 30400259..00000000 --- a/.github/workflows/junit.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: junit - -on: - push: - branches: - - '**' - pull_request: - -jobs: - junit: - runs-on: ubuntu-latest - defaults: - run: - working-directory: src/accelerometer/java/ - - steps: - - uses: actions/checkout@v4 - - - name: Setup java - uses: actions/setup-java@v4 - with: - distribution: 'zulu' - java-version: '8' - - - name: Compile java files - run: javac -cp JTransforms-3.1-with-dependencies.jar *.java - - - name: Download Junit - run: wget -O junit.jar https://repo1.maven.org/maven2/org/junit/platform/junit-platform-console-standalone/1.6.0/junit-platform-console-standalone-1.6.0.jar - - - name: Compile tests - run: javac -cp .:Tests:junit.jar Tests/*.java - - - name: Run tests - run: java -jar junit.jar -cp . --scan-class-path