Skip to content

Commit

Permalink
Update github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Nov 2, 2023
1 parent e86231f commit e2ea601
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 7 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/java21.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Java 21
on:
- push
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 40
steps:
- uses: actions/checkout@v3
- name: Set up Azul JDK 21
uses: actions/setup-java@v3
with:
java-version: 21
distribution: 'zulu'
cache: 'maven'
- name: Test in Maven
run: mvn test
2 changes: 1 addition & 1 deletion .github/workflows/linux-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
arch: none
distro: none
base_image: fizzed/buildx:arm64v8-ubuntu18-jdk11
base_image: fizzed/buildx:arm64-ubuntu18-jdk11
dockerRunArgs: |
--volume "~/.m2:/root/.m2" --volume "${PWD}:/mnt"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-armel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
arch: none
distro: none
base_image: fizzed/buildx:arm32v5-debian11-jdk11
base_image: fizzed/buildx:armel-debian11-jdk11
dockerRunArgs: |
--volume "~/.m2:/root/.m2" --volume "${PWD}:/mnt"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-armhf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
arch: none
distro: none
base_image: fizzed/buildx:arm32v7-ubuntu18-jdk11
base_image: fizzed/buildx:armhf-ubuntu18-jdk11
dockerRunArgs: |
--volume "~/.m2:/root/.m2" --volume "${PWD}:/mnt"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-musl-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
arch: none
distro: none
base_image: fizzed/buildx:arm64v8-alpine3.11-jdk11
base_image: fizzed/buildx:arm64-alpine3.11-jdk11
shell: /bin/sh
dockerRunArgs: |
--volume "~/.m2:/root/.m2" --volume "${PWD}:/mnt"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-musl-x64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
arch: none
distro: none
base_image: fizzed/buildx:amd64-alpine3.11-jdk11
base_image: fizzed/buildx:x64-alpine3.11-jdk11
shell: /bin/sh
dockerRunArgs: |
--volume "~/.m2:/root/.m2" --volume "${PWD}:/mnt"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-riscv64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
arch: none
distro: none
base_image: fizzed/buildx:riscv64-ubuntu20-jdk19
base_image: fizzed/buildx:riscv64-ubuntu20-jdk21
dockerRunArgs: |
--volume "~/.m2:/root/.m2" --volume "${PWD}:/mnt"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-x64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
- workflow_dispatch
jobs:
build:
runs-on: macos-11
runs-on: macos-latest
timeout-minutes: 40
steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Java distribution of Tkrzw & JNI libs by Fizzed
[![Java 8](https://img.shields.io/github/actions/workflow/status/fizzed/tkrzw/java8.yaml?branch=master&label=Java%208&style=flat-square)](https://github.com/fizzed/tkrzw/actions/workflows/java8.yaml)
[![Java 11](https://img.shields.io/github/actions/workflow/status/fizzed/tkrzw/java11.yaml?branch=master&label=Java%2011&style=flat-square)](https://github.com/fizzed/tkrzw/actions/workflows/java11.yaml)
[![Java 17](https://img.shields.io/github/actions/workflow/status/fizzed/tkrzw/java17.yaml?branch=master&label=Java%2017&style=flat-square)](https://github.com/fizzed/tkrzw/actions/workflows/java17.yaml)
[![Java 21](https://img.shields.io/github/actions/workflow/status/fizzed/tkrzw/java21.yaml?branch=master&label=Java%2021&style=flat-square)](https://github.com/fizzed/tkrzw/actions/workflows/java21.yaml)

[![Linux x64](https://img.shields.io/github/actions/workflow/status/fizzed/tkrzw/java11.yaml?branch=master&label=Linux%20x64&style=flat-square)](https://github.com/fizzed/tkrzw/actions/workflows/java11.yaml)
[![Linux arm64](https://img.shields.io/github/actions/workflow/status/fizzed/tkrzw/linux-arm64.yaml?branch=master&label=Linux%20arm64&style=flat-square)](https://github.com/fizzed/tkrzw/actions/workflows/linux-arm64.yaml)
Expand Down

0 comments on commit e2ea601

Please sign in to comment.