-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to upload coveralls data from Travis build #119
Comments
+1, I am using it for public repo and Travis CI. Error is
|
Hi, I have the same issue, see this. It appears two days ago, while I didn't touch the coveralls configuration, see this pull request passed, but when travis rebuild on the master branch after the merged, it failed with the same error, see this. My configuration is as follow: <profile>
<id>coveralls</id>
<build>
<plugins>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
<configuration>
<repoToken>${env.REPOSITORY_TOKEN}</repoToken>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.1</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile> And I run: The environment variable Thank you. |
@danglotb had the same issue 1 our ago - and don't know what to say, it magically works now again |
Hello, thank you for answers. It is now back to normal. I would like to add the following Tweet, which confirms that the issue was on Travis/Coveralls side. Thank you very much. |
I am using Travis PRO and Github for private repositories. When running the tests locally, data is uploaded correctly to Coveralls. However, when Travis is running builds, I am always getting this failure:
[ERROR] Failed to execute goal org.eluder.coveralls:coveralls-maven-plugin:4.3.0:report (default-cli) on project web-service: Processing of input or output data failed: Report submission to Coveralls API failed with HTTP status 422: Unprocessable Entity (Couldn't find a repository matching this job.) -> [Help 1]
I tried several configuration, with or without the token in pom.xml, etc. Currently I have this config:
in .coveralls.yml:
and in pom.xml:
Note, build fails even if
failOnServiceError
is falseThe text was updated successfully, but these errors were encountered: