From 803f896cca1e3b169a0e8a36189d15f5a2a31b39 Mon Sep 17 00:00:00 2001 From: dafreels Date: Thu, 20 Apr 2023 09:04:34 -0400 Subject: [PATCH] #345 Working on build scripts --- .github/workflows/build.yml | 60 ++++++++++++++++++------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f4f3cc1c..8f6a3311 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,36 +34,36 @@ jobs: SPARK_LOCAL_IP: 127.0.0.1 JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 run: mvn -B -P scala_${{ matrix.scala }} clean install -# aws: -# needs: core -# name: AWS -# strategy: -# matrix: -# os: [ ubuntu-latest, macos-latest ] -# scala: [ '2.12', '2.13' ] -# runs-on: ${{ matrix.os }} -# defaults: -# run: -# working-directory: ./metalus-aws -# steps: -# - name: Source Checkout -# uses: actions/checkout@v2 -# - name: Set up JDK 1.8 -# uses: actions/setup-java@v1 -# with: -# java-version: 1.8 -# - name: Cache Maven Jars -# uses: actions/cache@v2 -# env: -# cache-name: cache-maven-jars -# with: -# path: ~/.m2 -# key: metalus-build-${{ env.cache-name }} -# - name: Build and Test -# env: -# SPARK_LOCAL_IP: 127.0.0.1 -# JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 -# run: mvn -B -P scala_${{ matrix.scala }} clean install + aws: + needs: core + name: AWS + strategy: + matrix: + os: [ ubuntu-latest, macos-latest ] + scala: [ '2.12', '2.13' ] + runs-on: ${{ matrix.os }} + defaults: + run: + working-directory: ./metalus-aws + steps: + - name: Source Checkout + uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Cache Maven Jars + uses: actions/cache@v2 + env: + cache-name: cache-maven-jars + with: + path: ~/.m2 + key: metalus-build-${{ env.cache-name }} + - name: Build and Test + env: + SPARK_LOCAL_IP: 127.0.0.1 + JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 + run: mvn -B -P scala_${{ matrix.scala }} clean install # spark: # needs: core # name: Spark