Skip to content
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

Check if IT simplification works now in jenkins-ci infra #110

Open
wants to merge 57 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
d43e8fb
Check if IT simplification works now in jenkins-ci infra
fbelzunc Jun 29, 2021
2ff592e
Remove the profile since tests do not seem to be triggering
fbelzunc Jun 29, 2021
3d25f82
Update Jenkinsfile again
fbelzunc Jun 29, 2021
7a9a66d
And once more
fbelzunc Jun 29, 2021
081f713
Create noWindows profile
fbelzunc Jun 29, 2021
693b00e
Try to run test in serial mode so there are not bind issues
fbelzunc Jun 29, 2021
829c6b7
test without simplification
fbelzunc Jun 29, 2021
53c95f5
and test again
fbelzunc Jun 29, 2021
efa1834
and re test again
fbelzunc Jun 29, 2021
ca840c1
modify pom and re-test
fbelzunc Jun 29, 2021
dfb0d62
re-run
fbelzunc Jun 29, 2021
275026f
test again
fbelzunc Jun 29, 2021
189d4e1
bump again
fbelzunc Jun 29, 2021
c5b8bef
bump last time for today
fbelzunc Jun 29, 2021
e70b348
build again
fbelzunc Jun 29, 2021
a576e97
build again
fbelzunc Jun 29, 2021
8cbb0ac
build
fbelzunc Jun 29, 2021
780203b
more builds
fbelzunc Jun 29, 2021
0c1f165
bump build
fbelzunc Jun 29, 2021
f02bb85
again
fbelzunc Jun 29, 2021
a332737
build
fbelzunc Jun 29, 2021
884b51b
build
fbelzunc Jun 29, 2021
24f586c
build
fbelzunc Jun 29, 2021
9bc1baa
another one
fbelzunc Jun 29, 2021
347fb60
bump
fbelzunc Jun 29, 2021
f8989c9
bump again
fbelzunc Jun 29, 2021
26ee82f
bump
fbelzunc Jun 29, 2021
3e710c9
bump
fbelzunc Jun 29, 2021
710dc3a
bump
fbelzunc Jun 29, 2021
ad9237a
bump
fbelzunc Jun 29, 2021
c2cde0c
increase timeout
fbelzunc Jun 29, 2021
e1220eb
bump
fbelzunc Jun 29, 2021
9b31ab2
bump
fbelzunc Jun 29, 2021
40a968f
again
fbelzunc Jun 29, 2021
381a4d1
bump
fbelzunc Jun 29, 2021
16305dc
bump
fbelzunc Jun 29, 2021
49a71c8
bump
fbelzunc Jun 29, 2021
cace6cb
bump
fbelzunc Jun 29, 2021
b9a41b3
bump
fbelzunc Jun 29, 2021
14be6ee
bump the good one
fbelzunc Jun 29, 2021
6680398
bump
fbelzunc Jun 30, 2021
16400f1
bump again
fbelzunc Jun 30, 2021
b62c714
remove space to bump
fbelzunc Jun 30, 2021
4a14149
bump
fbelzunc Jun 30, 2021
2949808
bump
fbelzunc Jun 30, 2021
28071a4
bump again
fbelzunc Jun 30, 2021
212872d
bump again
fbelzunc Jun 30, 2021
9f0d80d
bump build
fbelzunc Jun 30, 2021
893256f
bump
fbelzunc Jun 30, 2021
34c9b85
bump a new build
fbelzunc Jun 30, 2021
effb516
bump build increasing timeout
fbelzunc Jun 30, 2021
e59bb23
bump build
fbelzunc Jun 30, 2021
e78533b
bump full build
fbelzunc Jun 30, 2021
b220d35
bump full tests
fbelzunc Jun 30, 2021
5686679
bump
fbelzunc Jul 1, 2021
d95b532
bump again
fbelzunc Jul 1, 2021
a3d864d
rerbump
fbelzunc Jul 1, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bump build increasing timeout
  • Loading branch information
fbelzunc committed Jun 30, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit effb516b7c6af19661dcb7c2ecca09285cf5a4b6
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -184,7 +184,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<!--<exclude>**/TheFlintstonesTest.java</exclude>-->
<exclude>**/TheFlintstonesTest.java</exclude>
<exclude>**/EntoEndUserCacheLookupEnabledTest.java</exclude>
<!-- <exclude>**/EntoEndUserCacheLookupDisabledTest.java</exclude>-->
<exclude>**/WindowsAdsiModeUserCacheDisabledTest.java</exclude>
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@
import org.junit.Test;
import org.jvnet.hudson.test.JenkinsRule;
import org.jvnet.hudson.test.LoggerRule;
import org.jvnet.hudson.test.recipes.WithTimeout;

import java.util.ArrayList;
import java.util.List;
@@ -73,6 +74,7 @@ public void customSingleADSetup(ActiveDirectoryDomain activeDirectoryDomain, Str
}

@Test
@WithTimeout(6000)
public void testEndtoEndManagerDnCacheEnabled() throws Exception {
List<String> messages;
l.record(hudson.plugins.active_directory.ActiveDirectoryUnixAuthenticationProvider.class, Level.FINE).capture(20);
@@ -109,6 +111,7 @@ public void testEndtoEndManagerDnCacheEnabled() throws Exception {
}

@Test
@WithTimeout(6000)
public void testEndtoEndManagerDnCacheDisabled() throws Exception {
List<String> messages;
l.record(hudson.plugins.active_directory.ActiveDirectoryUnixAuthenticationProvider.class, Level.FINE).capture(20);