Skip to content

Commit

Permalink
Switch CircleCI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dagguh committed Mar 6, 2023
1 parent 8431206 commit 3d4187e
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 27 deletions.
22 changes: 0 additions & 22 deletions .circleci/config.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: ./mvnw --batch-mode verify -Djpt.btf.provision=true
5 changes: 2 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ Thank you for taking the time to contribute!

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

Atlassian requires contributors to sign a Contributor License Agreement,
known as a CLA. This serves as a record stating that the contributor is
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
[![CircleCI](https://circleci.com/gh/atlassian/jpt-example-btf.svg?style=svg)](https://circleci.com/gh/atlassian/jpt-example-btf)

# Benchmark your Jira instance

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

0 comments on commit 3d4187e

Please sign in to comment.