This file contains hidden or 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
| #!/bin/bash | |
| set -e | |
| # Script for babysitting a PR until it is merged. The script will: | |
| # - Check if the PR is already merged | |
| # - Check if the PR is out-of-date with the base branch and attempt to rebase | |
| # - Check if the E2E tests are still running | |
| # - Check the conclusion of the E2E tests | |
| # - Post a '/retest' comment on the PR if the E2E tests have failed | |
| # |
This file contains hidden or 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
| #!/bin/bash | |
| # Script for setting up CDK environment | |
| # Currently tested to work on Mac, but should work on Linux also | |
| # TODO: | |
| # Add support for Cygwin | |
| # Add support for libvirt box (instead of virtualbox) | |
| CDK_BASE_URL=http://cdk-builds.usersys.redhat.com/builds |
This file contains hidden or 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
| == Migration from SVN to Git == | |
| This is a fork of nbolt's svn-to-github script. It is modified to be used for swt bot tests migration. We need to migrate these folders out of the original svn repo: | |
| ./archives/tests/org.jboss.tools.archives.ui.bot.test | |
| ./as/tests/org.jboss.ide.eclipse.as.ui.bot.test | |
| ./bpel/tests/org.jboss.tools.bpel.ui.bot.test | |
| ./build/aggregate/soatests-site/tests/org.jboss.tools.drools.ui.bot.test | |
| ./esb/tests/org.jboss.tools.esb.ui.bot.test | |
| ./forge/tests/org.jboss.tools.forge.ui.bot.test | |
| ./freemarker/tests/org.jboss.tools.freemarker.ui.bot.test | |
| ./hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test |