Skip to content

Commit 3d4187e

Browse files
committed
Switch CircleCI to GitHub Actions
1 parent 8431206 commit 3d4187e

File tree

4 files changed

+23
-27
lines changed

4 files changed

+23
-27
lines changed

.circleci/config.yml

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

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
verify:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- name: Set up JDK
15+
uses: actions/setup-java@v3
16+
with:
17+
java-version: '8'
18+
distribution: 'temurin'
19+
cache: maven
20+
- name: Build with Maven
21+
run: ./mvnw --batch-mode verify -Djpt.btf.provision=true

CONTRIBUTING.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ Thank you for taking the time to contribute!
66

77
Pull requests, issues and comments are welcome. For pull requests, please:
88
1. fork the repo
9-
2. enable CI for your fork, see [CircleCI docs](https://circleci.com/docs/2.0/project-build/#adding-projects)
10-
3. create a branch with your changes
11-
4. raise a pull request
9+
2. create a branch with your changes
10+
3. raise a pull request
1211

1312
Atlassian requires contributors to sign a Contributor License Agreement,
1413
known as a CLA. This serves as a record stating that the contributor is

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
[![CircleCI](https://circleci.com/gh/atlassian/jpt-example-btf.svg?style=svg)](https://circleci.com/gh/atlassian/jpt-example-btf)
2-
31
# Benchmark your Jira instance
42

53
Read and customize the [benchmark](src/test/java/com/atlassian/performance/tools/examplebtf/MyBtfBenchmarkIT.java).

0 commit comments

Comments
 (0)