Skip to content

Commit

Permalink
Migrate CI from Appveyor to GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sbesson committed Mar 28, 2024
1 parent 62a8419 commit e0bdea1
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 24 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: Gradle

on:
push:
pull_request:

jobs:
build:
strategy:
matrix:
java: [11, 17, 21]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
- name: Run commands
run: |
./gradlew build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: omero-ms-pixel-buffer ${{ matrix.java }}
path: build/distributions/*
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
[![AppVeyor status](https://ci.appveyor.com/api/projects/status/github/omero-ms-pixel-buffer)](https://ci.appveyor.com/project/gs-jenkins/omero-ms-pixel-buffer)

OMERO Pixel Data Microservice
=============================

Expand Down
22 changes: 0 additions & 22 deletions appveyor.yml

This file was deleted.

0 comments on commit e0bdea1

Please sign in to comment.