From f188b7d924b97bc0668e029e9af70cd942b61a80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Bispo?= Date: Mon, 12 Aug 2024 16:58:56 +0100 Subject: [PATCH] Removes clava-js workflow --- .github/workflows/ant-clava-js.yml | 73 ------------------------------ 1 file changed, 73 deletions(-) delete mode 100644 .github/workflows/ant-clava-js.yml diff --git a/.github/workflows/ant-clava-js.yml b/.github/workflows/ant-clava-js.yml deleted file mode 100644 index c5b27eda6..000000000 --- a/.github/workflows/ant-clava-js.yml +++ /dev/null @@ -1,73 +0,0 @@ -# This workflow will build a Java project with Ant -# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-ant - -name: Java CI - Clava JS - -on: - push: - branches: [ feature/clava-js ] - pull_request: - branches: [ feature/clava-js ] - - # Daily at midnight - schedule: - - cron: '0 0 * * *' - -permissions: - checks: write - -jobs: - build: - - runs-on: ubuntu-latest - - #defaults: - # run: - # working-directory: ./.. - - steps: - - uses: actions/checkout@v4 - # Because of scheduled runs, by default run on default branch - with: - ref: feature/clava-js - - - name: Cache ivy dependencies - id: cache-nivy - uses: actions/cache@v3 - env: - cache-name: cache-ivy-dependencies - with: - # ivy dependencies cache files are stored in `~/.ivy2` on Linux/macOS - path: ~/.ivy2 - key: ${{ runner.os }}-build-${{ env.cache-name }} - - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - java-version: '17' - distribution: 'temurin' - - - name: Install build essentials and CMake - run: | - sudo apt-get update - sudo apt-get install build-essential - sudo apt-get install -y cmake - - name: Generate build.xml - run: | - wget -q -N http://specs.fe.up.pt/tools/eclipse-build.jar - java -jar eclipse-build.jar https://github.com/specs-feup/specs-java-libs https://github.com/specs-feup/lara-framework?commit=feature/lara-js ./ - wget -N -O /usr/share/ant/lib/ivy-2.5.0.jar specs.fe.up.pt/libs/ivy-2.5.0.jar - - name: Build with Ant - run: | - ant -noinput -buildfile build.xml - - name: List directory - run: | - echo "Current folder" - ls - - name: Publish Test Report - uses: mikepenz/action-junit-report@v3.6.1 - if: always() # always run even if the previous step fails - with: - report_paths: '**/reports-eclipse-build/TEST-*.xml' - summary: true - #exclude_sources: '' \ No newline at end of file