Skip to content

Commit 5add169

Browse files
authored
Merge branch 'main' into java-config-redesign
2 parents e3701d0 + 928cbfb commit 5add169

70 files changed

Lines changed: 7457 additions & 3761 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
name: Bug Report
2+
description: Report a bug in codeflash
3+
labels: ["bug"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to report a bug!
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: Describe the bug
13+
description: A clear description of what the bug is.
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: reproduction
18+
attributes:
19+
label: Steps to reproduce
20+
description: Steps to reproduce the behavior.
21+
placeholder: |
22+
1. Run `codeflash ...`
23+
2. See error
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: expected
28+
attributes:
29+
label: Expected behavior
30+
description: What you expected to happen.
31+
validations:
32+
required: true
33+
- type: input
34+
id: version
35+
attributes:
36+
label: Codeflash version
37+
description: Output of `codeflash --version`
38+
placeholder: "0.x.x"
39+
validations:
40+
required: true
41+
- type: input
42+
id: python-version
43+
attributes:
44+
label: Python version
45+
description: Output of `python --version`
46+
placeholder: "3.x.x"
47+
validations:
48+
required: true
49+
- type: dropdown
50+
id: os
51+
attributes:
52+
label: Operating system
53+
options:
54+
- Linux
55+
- macOS
56+
- Windows
57+
- Other
58+
validations:
59+
required: true
60+
- type: textarea
61+
id: additional
62+
attributes:
63+
label: Additional context
64+
description: Any other context, logs, or screenshots.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Discussions
4+
url: https://github.com/codeflash-ai/codeflash/discussions
5+
about: Ask questions and share ideas
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Feature Request
2+
description: Suggest a new feature or improvement
3+
labels: ["enhancement"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for suggesting a feature!
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: Describe the feature
13+
description: A clear description of what you'd like to see.
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: motivation
18+
attributes:
19+
label: Motivation
20+
description: Why is this feature useful? What problem does it solve?
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: alternatives
25+
attributes:
26+
label: Alternatives considered
27+
description: Any alternative solutions or workarounds you've tried.
28+
- type: textarea
29+
id: additional
30+
attributes:
31+
label: Additional context
32+
description: Any other context or screenshots.

code_to_optimize/java-gradle/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ dependencies {
2121
testImplementation("org.junit.jupiter:junit-jupiter-params:5.10.0")
2222
testImplementation("org.xerial:sqlite-jdbc:3.42.0.0")
2323
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
24-
testImplementation(files("/Users/heshammohamed/Work/codeflash/code_to_optimize/java-gradle/libs/codeflash-runtime-1.0.0.jar")) // codeflash-runtime
2524
}
2625

2726
tasks.test {

code_to_optimize/java-gradle/codeflash.toml

Lines changed: 0 additions & 4 deletions
This file was deleted.
55.6 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

code_to_optimize/java-gradle/gradlew

Lines changed: 176 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

code_to_optimize/java-gradle/gradlew.bat

Lines changed: 84 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
-14 MB
Binary file not shown.

0 commit comments

Comments
 (0)