Skip to content

Commit

Permalink
Other tweaks to build process
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Jan 22, 2025
1 parent f75455e commit abcf2cf
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions .blaze/blaze.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

import com.fizzed.blaze.Task;
import com.fizzed.blaze.project.PublicBlaze;
import com.fizzed.buildx.Buildx;
import com.fizzed.buildx.Target;

import java.util.List;
import java.util.stream.Collectors;

public class blaze extends PublicBlaze {

Expand All @@ -11,6 +16,14 @@ protected int minimumSupportedJavaVersion() {
return 17;
}

@Override
protected List<Target> crossTestTargets() {
// weird gradle test issue occurs only on riscv64
return super.crossTestTargets().stream()
.filter(v -> !v.getArch().contains("riscv64"))
.collect(Collectors.toList());
}

// public demos

@Task(order=1, value="Demo of parsing a template and logs its structure. Argument of -Drocker.file=<file>")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -625,6 +625,6 @@ following for a complete list:

## License

Copyright (C) 2015+ Fizzed, Inc.
Copyright (C) 2025+ Fizzed, Inc.

This work is licensed under the Apache License, Version 2.0. See LICENSE for details.
4 changes: 2 additions & 2 deletions buildx-results.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Buildx Results
--------------
Cross platform tests use the Buildx project: https://github.com/fizzed/buildx
Commit: 49cd2575e4d4f6456a8b9f4bdc10cac1b5991061
Date: 2025-01-10T20:36:56.774381Z[UTC]
Commit: f75455e02e8fc2f46e8718ee8c126e5c8599531f
Date: 2025-01-22T18:24:55.593635Z[UTC]

linux-x64 success
linux-arm64 success
Expand Down
2 changes: 1 addition & 1 deletion rocker-gradle-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-tooling-api</artifactId>
<version>7.4.2</version>
<version>8.12</version>
</dependency>
</dependencies>
<executions>
Expand Down

0 comments on commit abcf2cf

Please sign in to comment.