forked from konveyor/go-konveyor-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update TackleTestapp binary tests (konveyor#171)
* Move TackletestApp binary fomr TIER0 Proposing partially revert PR#161 Testapp Binary test assignment to TIER0 to unblock CI on-PR checks that are holding our colleagues work in Konveyor repos from being merged. The original PR#161 moved TackleTestapp Public "binary" test into TIER0 however it was _still failing_. The issue is already reported as https://issues.redhat.com/browse/MTA-3654, so I'd strongly prefer escalate the Jira issue to merging failing test. Signed-off-by: Marek Aufart <[email protected]> * Update TackleTestapp binary tests Updating test for Tackle Testapp Public Binary analysis and related test data. Related to konveyor#161, konveyor#169, replaces konveyor#168 Signed-off-by: Marek Aufart <[email protected]> * Update test_cases names Signed-off-by: Marek Aufart <[email protected]> --------- Signed-off-by: Marek Aufart <[email protected]>
- Loading branch information
Showing
9 changed files
with
145 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
package identity | ||
|
||
import ( | ||
"github.com/konveyor/tackle2-hub/api" | ||
) | ||
|
||
var TackleTestappPrivateMaven = api.Identity{ | ||
Kind: "maven", | ||
Name: "maven-creds", | ||
Settings: `<?xml version="1.0" encoding="UTF-8"?> | ||
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 http://maven.apache.org/xsd/settings-1.2.0.xsd"> | ||
<pluginGroups> | ||
</pluginGroups> | ||
<proxies> | ||
</proxies> | ||
<servers> | ||
<server> | ||
<id>tackle-testapp</id> | ||
<username>GITHUB_USER</username> | ||
<password>GITHUB_TOKEN</password> | ||
</server> | ||
</servers> | ||
<mirrors> | ||
<mirror> | ||
<id>maven-default-http-blocker</id> | ||
<mirrorOf>external:http:*</mirrorOf> | ||
<name>Pseudo repository to mirror external repositories initially using HTTP.</name> | ||
<url>http://0.0.0.0/</url> | ||
<blocked>true</blocked> | ||
</mirror> | ||
</mirrors> | ||
<profiles> | ||
<profile> | ||
<id>github</id> | ||
<repositories> | ||
<repository> | ||
<id>central</id> | ||
<url>https://repo1.maven.org/maven2</url> | ||
</repository> | ||
<repository> | ||
<id>tackle-testapp</id> | ||
<url>https://maven.pkg.github.com/konveyor/tackle-testapp</url> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
</profile> | ||
</profiles> | ||
<activeProfiles> | ||
<activeProfile>github</activeProfile> | ||
</activeProfiles> | ||
</settings>`, | ||
} | ||
|
||
var TackleTestappPublicMaven = api.Identity{ | ||
Kind: "maven", | ||
Name: "maven-testapp-public-creds", | ||
Settings: `<?xml version="1.0" encoding="UTF-8"?> | ||
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 http://maven.apache.org/xsd/settings-1.2.0.xsd"> | ||
<pluginGroups> | ||
</pluginGroups> | ||
<proxies> | ||
</proxies> | ||
<servers> | ||
<server> | ||
<id>tackle-testapp-public</id> | ||
<username>GITHUB_USER</username> | ||
<password>GITHUB_TOKEN</password> | ||
</server> | ||
</servers> | ||
<mirrors> | ||
<mirror> | ||
<id>maven-default-http-blocker</id> | ||
<mirrorOf>external:http:*</mirrorOf> | ||
<name>Pseudo repository to mirror external repositories initially using HTTP.</name> | ||
<url>http://0.0.0.0/</url> | ||
<blocked>true</blocked> | ||
</mirror> | ||
</mirrors> | ||
<profiles> | ||
<profile> | ||
<id>github</id> | ||
<repositories> | ||
<repository> | ||
<id>central</id> | ||
<url>https://repo1.maven.org/maven2</url> | ||
</repository> | ||
<repository> | ||
<id>tackle-testapp-public</id> | ||
<url>https://maven.pkg.github.com/konveyor/tackle-testapp-public</url> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
</profile> | ||
</profiles> | ||
<activeProfiles> | ||
<activeProfile>github</activeProfile> | ||
</activeProfiles> | ||
</settings>`, | ||
} |