Skip to content

Commit

Permalink
Merge operators wip (#114)
Browse files Browse the repository at this point in the history
New beginnings.
  • Loading branch information
qinqon authored and phoracek committed Jun 25, 2019
1 parent eb03eca commit 69dcc66
Show file tree
Hide file tree
Showing 7,719 changed files with 539,908 additions and 1,748,340 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
87 changes: 81 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,81 @@
_out/
cluster/.kubeconfig
cluster/.kubectl
tests/*.test
bin/
tools/manifest-generator/manifest-generator
# Temporary Build Files
build/_output
build/_test

# Cloned kubevirtci
kubevirtci

# Created by https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
### Emacs ###
# -*- mode: gitignore; -*-
*~
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
tramp
.\#*
# Org-mode
.org-id-locations
*_archive
# flymake-mode
*_flymake.*
# eshell files
/eshell/history
/eshell/lastdir
# elpa packages
/elpa/
# reftex files
*.rel
# AUCTeX auto folder
/auto/
# cask packages
.cask/
dist/
# Flycheck
flycheck_*.el
# server auth directory
/server/
# projectiles files
.projectile
projectile-bookmarks.eld
# directory configuration
.dir-locals.el
# saveplace
places
# url cache
url/cache/
# cedet
ede-projects.el
# smex
smex-items
# company-statistics
company-statistics-cache.el
# anaconda-mode
anaconda-mode/
### Go ###
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, build with 'go test -c'
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
### Vim ###
# swap
.sw[a-p]
.*.sw[a-p]
# session
Session.vim
# temporary
.netrwhist
# auto-generated tag files
tags
### VisualStudioCode ###
.vscode/*
.history
# End of https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
14 changes: 3 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
language: go
go_import_path: github.com/nmstate/kubernetes-nmstate
go:
- "1.10"

services:
- docker
go: "1.11"

install: true
script:
- make check build
- changed_files=$(git diff --name-only $TRAVIS_COMMIT_RANGE)
- if [[ $changed_files =~ Dockerfile ]]; then
make docker;
fi
- GINKGO_EXTRA_ARGS="--compilers=2" make all test/unit
Loading

0 comments on commit 69dcc66

Please sign in to comment.