Skip to content

Commit

Permalink
adds circle ci build
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Apr 30, 2023
1 parent eab4608 commit 4779a25
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
15 changes: 15 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: 2.1
orbs:
gradle: circleci/gradle@3.0.0
executors:
machine_executor_amd64:
machine:
image: ubuntu-2204:2022.04.2
environment:
architecture: "amd64"
platform: "linux/amd64"
workflows:
gradle_test:
jobs:
- gradle/test:
executor: machine_executor_amd64
14 changes: 6 additions & 8 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,10 @@
"name": "TestMFScreenerApplication",
"request": "launch",
"mainClass": "com.example.mfscreener.TestMFScreenerApplication",
"projectName": "mfscreener"
},
{
"type": "java",
"name": "Launch Current File",
"request": "launch",
"mainClass": "${file}"
"projectName": "mfscreener",
"sourcePaths": [
"${workspaceFolder}/build/generated/"
]
},
{
"type": "java",
Expand All @@ -25,7 +22,8 @@
"projectName": "mfscreener",
"sourcePaths": [
"${workspaceFolder}/build/generated/"
]
],
"args": "--spring.profiles.active=local"
}
]
}

0 comments on commit 4779a25

Please sign in to comment.