Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
15 changes: 0 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,21 +137,6 @@ Must set env vars `DOCKER_USER` and `DOCKER_PASSWORD` or have a valid `.dockercf
./build-docker-push.sh
```

### Jenkins automation

Master branch:

* Runs a build, pushes an image to Quay tagged with the commit sha

Pull requests:

* Runs a build when PRs are created or PR commits are pushed
* Comment with `Jenkins rebuild` to manually trigger a re-build
* Comment with `Jenkins push` to push an image to Quay, tagged with:
`pr_[pr #]_build_[jenkins build #]`

If changes are ever required for the Jenkins job configuration, apply them to both the [regular console job](https://jenkins-tectonic.prod.coreos.systems/job/console-build/) and [PR image job](https://jenkins-tectonic.prod.coreos.systems/job/console-pr-image/).

## Hacking

See [CONTRIBUTING](CONTRIBUTING.md) for workflow & convention details.
Expand Down
17 changes: 4 additions & 13 deletions frontend/integration-tests/protractor.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import * as _ from 'lodash';
import { TapReporter } from 'jasmine-reporters';
import * as ConsoleReporter from 'jasmine-console-reporter';
import * as failFast from 'protractor-fail-fast';
import { createWriteStream} from 'fs';
import { format } from 'util';

const tap = !!process.env.TAP;

Expand Down Expand Up @@ -56,23 +58,12 @@ export const config: Config = {
}
},
onComplete: async() => {
console.log('BEGIN BROWSER LOGS');
const consoleLogStream = createWriteStream('gui_test_screenshots/browser.log', { flags: 'a' });
browserLogs.forEach(log => {
const {level, message} = log;
const messageStr = _.isArray(message) ? message.join(' ') : message;
switch (level.name) {
case 'DEBUG':
console.log(level, messageStr);
break;
case 'SEVERE':
console.warn(level, messageStr);
break;
case 'INFO':
default:
console.info(level, messageStr);
}
consoleLogStream.write(`${format.apply(null, [`[${level.name}]`, messageStr])}\n`);
});
console.log('END BROWSER LOGS');

// Use projects if OpenShift so non-admin users can run tests. We need the fully-qualified name
// since we're using kubectl instead of oc.
Expand Down
4 changes: 0 additions & 4 deletions jenkins

This file was deleted.

153 changes: 0 additions & 153 deletions jenkins.sh

This file was deleted.

15 changes: 0 additions & 15 deletions test-gui-e2e-setup.sh

This file was deleted.