Skip to content

Add Java CI

Add Java CI #46

Workflow file for this run

name: Build and test
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]
# See https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
Platform: x64 # For Msbuild
Configuration: Release # For Msbuild
jobs:
ci:
name: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
ice_build_flags: srcs
cpp_build_flags: ICE_HOME=${{github.workspace}}/ice
csharp_build_command: dotnet build
java_buid_flags: -PiceHome=${{github.workspace}}/ice
- os: macos-14
ice_build_flags: srcs
cpp_build_flags: ICE_HOME=${{github.workspace}}/ice
csharp_build_command: dotnet build
java_buid_flags: -PiceHome=${{github.workspace}}/ice
- os: windows-2022
ice_build_flags: /t:BuildDist
cpp_build_flags: /p:IceHome=${{github.workspace}}\ice
csharp_build_command: MSBuild
java_buid_flags: -PiceHome=${{github.workspace}}\ice
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Ice
uses: actions/checkout@v4
with:
repository: zeroc-ice/ice
ref: main
path: ice
- name: Setup Ice Build Dependencies
uses: ./ice/.github/actions/setup-dependencies
- name: Build Ice on ${{ matrix.os }}
uses: ./ice/.github/actions/build
timeout-minutes: 60
with:
working_directory: ice
build_flags: ${{ matrix.ice_build_flags }}
- name: Checkout repository
uses: actions/checkout@v4
with:
path: ice-demos
- name: Build C++ Demos on ${{ matrix.os }}
uses: ./ice/.github/actions/build
timeout-minutes: 20
with:
working_directory: ice-demos/cpp
msbuild_project: msbuild/ice.proj
build_flags: ${{ matrix.cpp_build_flags }}
- name: Build C# Demos on ${{ matrix.os }}
timeout-minutes: 20
working-directory: ice-demos/csharp
run: ${{ matrix.csharp_build_command }} /m msbuild/ice.proj
- name: Build Java Demos on ${{ matrix.os }}
timeout-minutes: 20
working-directory: ice-demos/java
run: ./gradlew ${{ matrix.java_buid_flags }} build