Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.
#

name: Build Centos7 Releases
name: Build amd64 Releases

on:
workflow_dispatch:
Expand All @@ -28,20 +28,20 @@ on:
- master
- branch-*
paths:
- '.github/workflows/build-ce7-releases.yml'
- '.github/workflows/build-amd64-releases.yml'
- 'auron-build.sh'

jobs:
build-snapshot:
name: Build Snapshot
runs-on: ubuntu-24.04
name: Build amd64
runs-on: ${{ matrix.runner }}
strategy:
matrix:
sparkver: [spark-3.0, spark-3.1, spark-3.2, spark-3.3, spark-3.4, spark-3.5]
scalaver: [ 2.12, 2.13 ]
javaver: [ 8, 21 ]
auronver: [7.0.0-SNAPSHOT]
runner: [ce7]
runner: [ ubuntu-24.04 ]
exclude:
# Only build on scala-2.13 for spark-3.5
- sparkver: spark-3.0
Expand Down Expand Up @@ -101,6 +101,7 @@ jobs:
sed -i 's/docker-compose -f/docker compose -f/g' ./auron-build.sh
./auron-build.sh \
--docker true \
--image centos7 \
--release \
--sparkver ${{ env.sparkver_short }} \
--scalaver ${{ matrix.scalaver }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# Apache Auron (Incubating)

[![TPC-DS](https://github.com/apache/auron/actions/workflows/tpcds.yml/badge.svg?branch=master)](https://github.com/apache/auron/actions/workflows/tpcds.yml)
[![master-ce7-builds](https://github.com/apache/auron/actions/workflows/build-ce7-releases.yml/badge.svg?branch=master)](https://github.com/apache/auron/actions/workflows/build-ce7-releases.yml)
[![master-amd64-builds](https://github.com/apache/auron/actions/workflows/build-ce7-releases.yml/badge.svg?branch=master)](https://github.com/apache/auron/actions/workflows/build-amd64-releases.yml)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
[![master-amd64-builds](https://github.com/apache/auron/actions/workflows/build-ce7-releases.yml/badge.svg?branch=master)](https://github.com/apache/auron/actions/workflows/build-amd64-releases.yml)
[![master-amd64-builds](https://github.com/apache/auron/actions/workflows/build-amd64-releases.yml/badge.svg?branch=master)](https://github.com/apache/auron/actions/workflows/build-amd64-releases.yml)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cxzl25 fixed #1836


<p align="center"><img src="./dev/auron-logo.png" /></p>

Expand Down
Loading