mirror of
https://github.com/status-im/c-kzg-4844.git
synced 2025-01-09 17:55:47 +00:00
4f0546af81
* Run clang sanitizers in CI + workflow cleanup * Update makefile * Update workflow names * Simplify more * Run go benchmarks in CI * Fix indentation nits * Initialize variable in fr_is_one * Revert "Initialize variable in fr_is_one" This reverts commit f4c2749e410c68479f83d78c9a1780efe191c7fe. * Move .PHONY outside of condition
37 lines
750 B
YAML
37 lines
750 B
YAML
name: Java
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
tests:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
- uses: actions/setup-java@v3
|
|
with:
|
|
distribution: "temurin"
|
|
java-version: "11"
|
|
- name: Build blst
|
|
run: |
|
|
cd src
|
|
make blst
|
|
- name: Build and Test (mainnet preset)
|
|
run: |
|
|
cd bindings/java
|
|
make build test
|
|
- name: Build and Test (minimal preset)
|
|
run: |
|
|
cd bindings/java
|
|
make PRESET=minimal build test
|