Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Commit f5cd62a

Browse files
GitHub Actions build (#218)
Signed-off-by: Mark S. Lewis <[email protected]>
1 parent 19b7291 commit f5cd62a

File tree

3 files changed

+35
-49
lines changed

3 files changed

+35
-49
lines changed

.github/workflows/build.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches:
6+
- release-2.2
7+
pull_request:
8+
branches:
9+
- release-2.2
10+
11+
env:
12+
FABRIC_VERSION: "2.2"
13+
GOPATH: ${{ github.workspace }}/src/test/fixture
14+
15+
jobs:
16+
test:
17+
runs-on: ubuntu-20.04
18+
strategy:
19+
fail-fast: false
20+
matrix:
21+
java-version:
22+
- "8"
23+
- "11"
24+
- "17"
25+
steps:
26+
- uses: actions/checkout@v3
27+
- name: Set up JDK ${{ matrix.java-version }}
28+
uses: actions/setup-java@v3
29+
with:
30+
java-version: ${{ matrix.java-version }}
31+
distribution: temurin
32+
cache: maven
33+
- name: Integration tests
34+
run: ./scripts/run-integration-tests.sh

azure-pipelines.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.

scripts/pull-fabric-images.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash -e
22
set -euo pipefail
33

4-
# FABRIC_VERSION is set in ci/azure-pipelines.yml
4+
# FABRIC_VERSION is set in .github/workflows/build.yml
55
VERSION=${FABRIC_VERSION:-2.2}
66
STABLE_TAG=amd64-${VERSION}-stable
77

0 commit comments

Comments
 (0)