Skip to content

Commit

Permalink
Merge pull request #2854 from cloudfoundry-incubator/backend-go-rework
Browse files Browse the repository at this point in the history
Restructure go backend (with source moves)
  • Loading branch information
Irfan Habib authored Aug 21, 2018
2 parents 7c89b0d + a73a6d3 commit 940e061
Show file tree
Hide file tree
Showing 785 changed files with 1,404 additions and 785,391 deletions.
8 changes: 5 additions & 3 deletions .cfignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,21 @@
node_modules/
bower_components/
dist/
components/*/backend/vendor
dev-certs/
out/
outputs/
tmp/
tools/
CHANGELOG.md
*.md
test/
deploy/all-in-one/
deploy/ci/
deploy/containers/
deploy/docker-compose/
deploy/stratos-ui-release/
deploy/fissile/
deploy/kubernetes/
deploy/stratos-base-images/
deploy/stratos-ui-release/
deploy/uaa/
docs/
build/dev_config.json
8 changes: 2 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ dev-certs/*
vendor/
**/vendor
**/*.so
.glide
tools/ssl
build/secrets.json
deploy/data/
Expand All @@ -76,21 +75,18 @@ deploy/stratos-ui-release/.blobs
deploy/stratos-ui-release/dev_releases/
output/fissile
deploy/ci/travis/temp/
deploy/glide-cache/

.dist/
deploy/uaa/tmp/
src/backend/app-core/plugins
src/backend/app-core/debug
src/backend/*/vendor/
src/backend/app-core/load_plugins.go
.v8flags*

*.bak
secrets.yaml
build/dev_config.json
e2e-reports/
.stratos-git-metadata.json
src/jetstream/jetstream

# Customisations

Expand All @@ -107,4 +103,4 @@ src/frontend/index.html

# Prebuild package

stratos-frontend-prebuild.zip
stratos-frontend-prebuild.zip
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ before_install:
install:
- npm install npm@5.6.0 -g
- npm install
- ssh-keyscan -t rsa bitbucket.org >> ~/.ssh/known_hosts
filter_secrets: false
branches:
only:
Expand All @@ -36,9 +37,9 @@ stages:
- Frontend Unit Tests
- Backend
- name: E2E tests
if: type != pull_request
if: type != pull_request OR commit_message =~ /\[e2e\-full\]/
- name: E2E tests quick
if: type != pull_request OR head_branch =~ ^(?i:e2e)-.*$
if: type != pull_request OR head_branch =~ ^(?i:e2e)-.*$ OR commit_message =~ /\[e2e\]/
jobs:
include:
- stage: Frontend Lint
Expand All @@ -55,7 +56,7 @@ jobs:
- curl -sL -o ~/bin/gimme https://raw.githubusercontent.com/travis-ci/gimme/master/gimme
- chmod +x ~/bin/gimme
- eval "$(gimme 1.9)"
- curl https://glide.sh/get | sh
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
script:
- npm run test-backend
- stage: E2E tests
Expand Down
Loading

0 comments on commit 940e061

Please sign in to comment.