Skip to content

Commit cdab24c

Browse files
committed
Update readme; add more buildx cross platform tests
1 parent f325739 commit cdab24c

4 files changed

Lines changed: 37 additions & 20 deletions

File tree

.blaze/blaze.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
blaze.dependencies = [
22
"com.fizzed:blaze-ssh"
3-
"com.fizzed:buildx:1.0.7"
4-
"com.fizzed:jne:4.1.1"
3+
"com.fizzed:buildx:1.2.0"
4+
"com.fizzed:jne:4.3.0"
55
]
66

77
java.source.version = 8

.blaze/blaze.java

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,16 @@ public void test_all_jdks() throws Exception {
9090
}
9191

9292
private final List<Target> crossTestTargets = asList(
93-
new Target("linux", "x64").setTags("test").setHost("build-x64-linux-latest"),
94-
new Target("linux", "arm64").setTags("test").setHost("build-arm64-linux-latest"),
95-
new Target("linux", "riscv64").setTags("test").setHost("build-riscv64-linux-latest"),
96-
new Target("macos", "x64").setTags("test").setHost("build-x64-macos-latest"),
97-
new Target("macos", "arm64").setTags("test").setHost("build-arm64-macos-latest"),
98-
new Target("windows", "x64").setTags("test").setHost("build-x64-windows-latest"),
99-
new Target("windows", "arm64").setTags("test").setHost("build-arm64-windows-latest"),
100-
new Target("freebsd", "x64").setTags("test").setHost("build-x64-freebsd-latest"),
101-
new Target("openbsd", "x64").setTags("test").setHost("build-x64-openbsd-latest")
93+
new Target("linux", "x64").setTags("test").setHost("bmh-build-x64-linux-latest"),
94+
new Target("linux", "arm64").setTags("test").setHost("bmh-build-arm64-linux-latest"),
95+
new Target("linux", "riscv64").setTags("test").setHost("bmh-build-riscv64-linux-latest"),
96+
new Target("linux_musl", "x64").setTags("test").setHost("bmh-build-x64-linux-musl-latest"),
97+
new Target("macos", "x64").setTags("test").setHost("bmh-build-x64-macos-latest"),
98+
new Target("macos", "arm64").setTags("test").setHost("bmh-build-arm64-macos-latest"),
99+
new Target("windows", "x64").setTags("test").setHost("bmh-build-x64-windows-latest"),
100+
new Target("windows", "arm64").setTags("test").setHost("bmh-build-arm64-windows-latest"),
101+
new Target("freebsd", "x64").setTags("test").setHost("bmh-build-x64-freebsd-latest"),
102+
new Target("openbsd", "x64").setTags("test").setHost("bmh-build-x64-openbsd-latest")
102103
);
103104

104105
@Task(order = 1)

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
[![Maven Central](https://img.shields.io/maven-central/v/com.fizzed/bigmap?color=blue&style=flat-square)](https://mvnrepository.com/artifact/com.fizzed/bigmap)
44

5-
## Automated Testing
6-
7-
The following Java versions and platforms are tested using GitHub workflows:
5+
cccccc
86

97
[![Java 8](https://img.shields.io/github/actions/workflow/status/fizzed/bigmap/java8.yaml?branch=master&label=Java%208&style=flat-square)](https://github.com/fizzed/bigmap/actions/workflows/java8.yaml)
108
[![Java 11](https://img.shields.io/github/actions/workflow/status/fizzed/bigmap/java11.yaml?branch=master&label=Java%2011&style=flat-square)](https://github.com/fizzed/bigmap/actions/workflows/java11.yaml)
@@ -17,12 +15,13 @@ The following Java versions and platforms are tested using GitHub workflows:
1715

1816
The following platforms are tested using the [Fizzed, Inc.](http://fizzed.com) build system:
1917

20-
![Linux arm64](https://img.shields.io/badge/Linux%20arm64-passing-green)
21-
![Linux riscv64](https://img.shields.io/badge/Linux%20riscv64-passing-green)
22-
![MacOS x64](https://img.shields.io/badge/MacOS%20x64-passing-green)
23-
![Windows arm64](https://img.shields.io/badge/Windows%20arm64-passing-green)
24-
![FreeBSD x64](https://img.shields.io/badge/FreeBSD%20x64-passing-green)
25-
![OpenBSD x64](https://img.shields.io/badge/OpenBSD%20x64-passing-green)
18+
[![Linux arm64](https://img.shields.io/badge/Linux%20arm64-passing-green)](buildx-results.txt)
19+
[![Linux riscv64](https://img.shields.io/badge/Linux%20riscv64-passing-green)](buildx-results.txt)
20+
[![Linux MUSL x64](https://img.shields.io/badge/Linux%20MUSL%20x64-passing-green)](buildx-results.txt)
21+
[![MacOS x64](https://img.shields.io/badge/MacOS%20x64-passing-green)](buildx-results.txt)
22+
[![Windows arm64](https://img.shields.io/badge/Windows%20arm64-passing-green)](buildx-results.txt)
23+
[![FreeBSD x64](https://img.shields.io/badge/FreeBSD%20x64-passing-green)](buildx-results.txt)
24+
[![OpenBSD x64](https://img.shields.io/badge/OpenBSD%20x64-passing-green)](buildx-results.txt)
2625

2726
## Overview
2827

buildx-results.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Buildx Results
2+
--------------
3+
Cross platform tests use the Buildx project: https://github.com/fizzed/buildx
4+
Commit: f325739624dddcca4f1ebf34198f0d82ffd0ee1d
5+
Date: 2025-01-10T19:11:27.113751Z[UTC]
6+
7+
linux-x64 success
8+
linux-arm64 success
9+
linux-riscv64 success
10+
linux_musl-x64 success
11+
macos-x64 success
12+
macos-arm64 success
13+
windows-x64 success
14+
windows-arm64 success
15+
freebsd-x64 success
16+
openbsd-x64 success
17+

0 commit comments

Comments
 (0)