Skip to content

Commit

Permalink
Acxiom#345 Working on shared artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
dafreels committed Apr 20, 2023
1 parent 6fe1876 commit 27d4547
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -29,6 +29,7 @@ jobs:
SPARK_LOCAL_IP: 127.0.0.1
JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
run: mvn -B -P scala_${{ matrix.scala }} clean install
- name: Share Artifacts
uses: actions/upload-artifact@v3
if: matrix.os == 'ubuntu-latest'
with:
Expand All @@ -54,11 +55,12 @@ jobs:
distribution: zulu
java-version: 8.0.362+8
cache: 'maven'
- name: Build and Test
- name: Download Artifacts
uses: actions/download-artifact@v3
with:
name: metalus-core_${{ matrix.scala }}
path: ~/.m2/repository/com/acxiom/metalus-core_${{ matrix.scala }}
- name: Build and Test
env:
SPARK_LOCAL_IP: 127.0.0.1
JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Expand Down Expand Up @@ -89,11 +91,12 @@ jobs:
scala=$(echo ${{matrix.spark}} | cut -d_ -f2)
echo "::set-output name=spark::$spark"
echo "::set-output name=scala::$scala"
- name: Build and Test
- name: Download Artifacts
uses: actions/download-artifact@v3
with:
name: metalus-core_${{ steps.get-versions.outputs.scala }}
path: ~/.m2/repository/com/acxiom/metalus-core_${{ steps.get-versions.outputs.scala }}
- name: Build and Test
env:
SPARK_LOCAL_IP: 127.0.0.1
JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
Expand Down

0 comments on commit 27d4547

Please sign in to comment.