Skip to content

Commit

Permalink
simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
sunchao committed Feb 16, 2024
1 parent ba31d08 commit bbb4d16
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 68 deletions.
52 changes: 52 additions & 0 deletions .github/actions/java-test-steps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

inputs:
builder:
description: 'The builder used to setup the toolchain'
required: true
default: 'setup-builder'

runs:
using: "composite"
steps:
- uses: actions/checkout@v4
- name: Setup Rust & Java toolchain
uses: ./.github/actions/${{inputs.builder}}
with:
rust-version: nightly
jdk-version: ${{env.JAVA_VERSION}}
architecture: aarch64

- name: Run cargo build
run: |
cd core
cargo build
- name: Cache Maven dependencies
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run Maven compile
run: |
./mvnw compile test-compile scalafix:scalafix -Psemanticdb
77 changes: 9 additions & 68 deletions .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,29 +91,10 @@ jobs:
container:
image: amd64/rust
steps:
- uses: actions/checkout@v4
- name: Setup Rust & Java toolchain
uses: ./.github/actions/setup-builder
with:
rust-version: nightly
jdk-version: ${{env.JAVA_VERSION}}

- name: Run cargo build
run: |
cd core
cargo build
- name: Cache Maven dependencies
uses: actions/cache@v4
- name: Java test steps
uses: ./.github/actions/java-test-steps.yml
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run Maven compile
run: |
./mvnw compile test-compile scalafix:scalafix -Psemanticdb
builder: setup-macos-builder

- name: Run tests
run: |
Expand Down Expand Up @@ -169,30 +150,10 @@ jobs:
name: Java test (macos)
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Setup Rust & Java toolchain
uses: ./.github/actions/setup-macos-builder
with:
rust-version: nightly
jdk-version: ${{env.JAVA_VERSION}}
architecture: x64

- name: Run cargo build
run: |
cd core
cargo build
- name: Cache Maven dependencies
uses: actions/cache@v4
- name: Java test steps
uses: ./.github/actions/java-test-steps.yml
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run Maven compile
run: |
./mvnw compile test-compile scalafix:scalafix -Psemanticdb
builder: setup-macos-builder

- name: Run tests
run: |
Expand Down Expand Up @@ -248,30 +209,10 @@ jobs:
name: Java test (macos-aarch64)
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Setup Rust & Java toolchain
uses: ./.github/actions/setup-macos-builder
with:
rust-version: nightly
jdk-version: ${{env.JAVA_VERSION}}
architecture: aarch64

- name: Run cargo build
run: |
cd core
cargo build
- name: Cache Maven dependencies
uses: actions/cache@v4
- name: Java test steps
uses: ./.github/actions/java-test-steps.yml
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run Maven compile
run: |
./mvnw compile test-compile scalafix:scalafix -Psemanticdb
builder: setup-macos-builder

- name: Run tests
run: |
Expand Down

0 comments on commit bbb4d16

Please sign in to comment.