File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed
maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -103,14 +103,9 @@ workflow(
103
103
104
104
run (
105
105
name = " Compile a Gradle project using the bindings from the server" ,
106
- // This test depicts the current incorrect behavior, and asserts on
107
- // the Gradle build failing with a specific problem. Once the problem
108
- // is fixed, modify the test to assert on a successful build.
109
- // TODO: https://github.com/typesafegithub/github-workflows-kt/issues/1694
110
106
command = """
111
107
cd .github/workflows/test-gradle-project-using-bindings-server
112
- (./gradlew build || true) >> output.txt 2>&1
113
- grep "inconsistent module metadata" output.txt
108
+ ./gradlew build
114
109
""" .trimIndent(),
115
110
)
116
111
Original file line number Diff line number Diff line change 68
68
name : ' Compile a Gradle project using the bindings from the server'
69
69
run : |-
70
70
cd .github/workflows/test-gradle-project-using-bindings-server
71
- (./gradlew build || true) >> output.txt 2>&1
72
- grep "inconsistent module metadata" output.txt
71
+ ./gradlew build
73
72
- id : ' step-10'
74
73
name : ' Fetch maven-metadata.xml for top-level action'
75
74
run : ' curl --fail http://localhost:8080/actions/checkout/maven-metadata.xml | grep '' <version>v4</version>'' '
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ internal fun ActionCoords.buildPomFile() =
12
12
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
13
13
<modelVersion>4.0.0</modelVersion>
14
14
<groupId>$owner </groupId>
15
- <artifactId>$fullName </artifactId>
15
+ <artifactId>$mavenName </artifactId>
16
16
<version>$version </version>
17
17
<name>$fullName </name>
18
18
<description>Auto-generated binding for $prettyPrint .</description>
You can’t perform that action at this time.
0 commit comments