testing
continuous-integration/drone/push Build was killed
Details
continuous-integration/drone/push Build was killed
Details
This commit is contained in:
parent
5f644c5945
commit
09ccfe26fd
10
.drone.yml
10
.drone.yml
|
@ -8,8 +8,12 @@ steps:
|
|||
- UBUNTU_MIRROR=http://de.archive.ubuntu.com/ubuntu
|
||||
settings:
|
||||
repo: sneak/work
|
||||
dry_run: true
|
||||
#auto_tag: true
|
||||
#dry_run: true
|
||||
username:
|
||||
from_secret: docker_username
|
||||
password:
|
||||
from_secret: docker_password
|
||||
tags:
|
||||
- ${DRONE_BRANCH//\//-}-${DRONE_COMMIT_SHA:0:8}
|
||||
- ${DRONE_COMMIT_SHA}
|
||||
- ${DRONE_BRANCH}
|
||||
- ${DRONE_BRANCH/\//-}
|
||||
|
|
|
@ -27,6 +27,7 @@ RUN \
|
|||
groupadd -g $GID_TO_ADD $USERNAME_TO_ADD && \
|
||||
useradd -u $UID_TO_ADD -g $GID_TO_ADD -s /bin/bash $USERNAME_TO_ADD && \
|
||||
usermod -p '*' $USERNAME_TO_ADD && \
|
||||
echo $USERNAME_TO_ADD > /etc/workuser && \
|
||||
go get -v -u github.com/peterbourgon/runsvinit && \
|
||||
cp /root/go/bin/runsvinit /usr/local/sbin/runsvinit && \
|
||||
rm -rf /root/go && \
|
||||
|
|
|
@ -10,9 +10,5 @@ docker run \
|
|||
-d \
|
||||
--name work \
|
||||
-v /:/hostroot \
|
||||
-v /home/sneak/.ssh/id_rsa:/home/sneak/.ssh/id_rsa \
|
||||
-v /home/sneak/.ssh/config:/home/sneak/.ssh/config \
|
||||
-v /home/sneak/.ssh/known_hosts:/home/sneak/.ssh/known_hosts \
|
||||
-v /home/sneak/Documents:/home/sneak/Documents \
|
||||
-v /var/run/docker.sock:/var/run/docker.sock \
|
||||
sneak/work
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
#!/bin/bash
|
||||
|
||||
UN="$(cat /etc/workuser)"
|
||||
HD="/home/$UN"
|
||||
|
||||
if [[ -e "$HD/.setupdone" ]]; then
|
||||
sleep 86400;
|
||||
exit
|
||||
fi
|
||||
|
||||
sudo -l -u $UN /bin/bash << EOF
|
||||
echo "user setup done" > ~/.setupdone
|
||||
EOF
|
|
@ -0,0 +1,16 @@
|
|||
top's Config File (Linux processes with windows)
|
||||
Id:i, Mode_altscr=0, Mode_irixps=1, Delay_time=1.0, Curwin=0
|
||||
Def fieldscur=¥¨³´»½ÀÄ·º¹Å&')*+,-./012568<>?ABCFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghij
|
||||
winflags=162740, sortindx=18, maxtasks=0, graph_cpus=2, graph_mems=0
|
||||
summclr=1, msgsclr=1, headclr=3, taskclr=1
|
||||
Job fieldscur=¥¦¹·º(³´Ä»½@<§Å)*+,-./012568>?ABCFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghij
|
||||
winflags=195508, sortindx=0, maxtasks=0, graph_cpus=2, graph_mems=0
|
||||
summclr=6, msgsclr=6, headclr=7, taskclr=6
|
||||
Mem fieldscur=¥º»<½¾¿ÀÁMBNÃD34·Å&'()*+,-./0125689FGHIJKLOPQRSTUVWXYZ[\]^_`abcdefghij
|
||||
winflags=195508, sortindx=21, maxtasks=0, graph_cpus=2, graph_mems=0
|
||||
summclr=5, msgsclr=5, headclr=4, taskclr=5
|
||||
Usr fieldscur=¥¦§¨ª°¹·ºÄÅ)+,-./1234568;<=>?@ABCFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghij
|
||||
winflags=195380, sortindx=3, maxtasks=0, graph_cpus=2, graph_mems=0
|
||||
summclr=3, msgsclr=3, headclr=2, taskclr=3
|
||||
Fixed_widest=0, Summ_mscale=0, Task_mscale=0, Zero_suppress=0
|
||||
|
|
@ -0,0 +1,198 @@
|
|||
"execute pathogen#infect()
|
||||
|
||||
silent !mkdir -p ~/.vim/backup > /dev/null 2>&1
|
||||
silent !mkdir -p ~/.vim/undo > /dev/null 2>&1
|
||||
silent !mkdir -p ~/.vim/swap > /dev/null 2>&1
|
||||
silent !mkdir -p ~/.vim/autoload > /dev/null 2>&1
|
||||
silent !mkdir -p ~/.vim/plugged > /dev/null 2>&1
|
||||
|
||||
if empty(glob('~/.vim/autoload/plug.vim'))
|
||||
silent !curl -fLo ~/.paths/sneak-sync/dotfiles/vim/autoload/plug.vim --create-dirs
|
||||
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
||||
endif
|
||||
|
||||
source ~/.vim/autoload/plug.vim
|
||||
|
||||
call plug#begin('~/.vim/plugged')
|
||||
|
||||
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
||||
" Plug 'roxma/vim-hug-neovim-rpc'
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'vim-airline/vim-airline-themes'
|
||||
"Plug 'edkolev/tmuxline.vim'
|
||||
Plug 'zchee/deoplete-go', { 'for': 'go' }
|
||||
Plug 'zchee/deoplete-jedi', { 'for': 'python' }
|
||||
|
||||
Plug 'vim-syntastic/syntastic'
|
||||
|
||||
set statusline+=%#warningmsg#
|
||||
set statusline+=%{SyntasticStatuslineFlag()}
|
||||
set statusline+=%*
|
||||
let g:syntastic_always_populate_loc_list = 1
|
||||
let g:syntastic_auto_loc_list = 1
|
||||
let g:syntastic_check_on_open = 1
|
||||
let g:syntastic_check_on_wq = 0
|
||||
let g:syntastic_go_checkers = ['gofmt']
|
||||
let g:syntastic_enable_signs = 1
|
||||
highlight SyntasticErrorSign guifg=white guibg=red
|
||||
|
||||
Plug 'scrooloose/nerdtree'
|
||||
"Plug 'ludovicchabant/vim-gutentags'
|
||||
|
||||
let g:gutentags_ctags_tagfile = '.tags'
|
||||
let g:gutentags_file_list_command = 'git ls-files'
|
||||
let g:gutentags_generate_on_new = 1
|
||||
|
||||
"Plug 'majutsushi/tagbar'
|
||||
Plug 'fatih/vim-go', { 'do': 'GoUpdateBinaries', 'for': 'go' }
|
||||
Plug 'cespare/vim-toml', { 'for': 'toml' }
|
||||
let g:deoplete#enable_at_startup = 1
|
||||
call plug#end()
|
||||
|
||||
let g:airline_powerline_fonts = 1
|
||||
|
||||
if !exists('g:airline_symbols')
|
||||
let g:airline_symbols = {}
|
||||
endif
|
||||
|
||||
" unicode symbols
|
||||
" let g:airline_left_sep = '▶'
|
||||
" let g:airline_right_sep = '◀'
|
||||
let g:airline_symbols.crypt = '🔒'
|
||||
let g:airline_symbols.linenr = '☰'
|
||||
" let g:airline_symbols.linenr = '␊'
|
||||
" let g:airline_symbols.linenr = ''
|
||||
" let g:airline_symbols.linenr = '¶'
|
||||
" let g:airline_symbols.maxlinenr = ''
|
||||
" let g:airline_symbols.maxlinenr = '㏑'
|
||||
" let g:airline_symbols.branch = '⎇'
|
||||
" let g:airline_symbols.paste = 'ρ'
|
||||
" let g:airline_symbols.paste = 'Þ'
|
||||
" let g:airline_symbols.paste = '∥'
|
||||
" let g:airline_symbols.spell = 'Ꞩ'
|
||||
" let g:airline_symbols.notexists = 'Ɇ'
|
||||
" let g:airline_symbols.whitespace = 'Ξ'
|
||||
|
||||
fun! InitBex()
|
||||
let myvar = strftime("%y%m%d.%Hh%M")
|
||||
let myvar = "set backupext=.". myvar
|
||||
execute myvar
|
||||
endfun
|
||||
map <silent> <Esc> :call InitBex()<CR>
|
||||
silent call InitBex()
|
||||
|
||||
set relativenumber
|
||||
filetype plugin indent on
|
||||
syntax on
|
||||
|
||||
set modelines=10
|
||||
noremap <Up> ""
|
||||
noremap! <Up> <Esc>
|
||||
noremap <Down> ""
|
||||
noremap! <Down> <Esc>
|
||||
noremap <Left> ""
|
||||
noremap! <Left> <Esc>
|
||||
noremap <Right> ""
|
||||
noremap! <Right> <Esc>
|
||||
vnoremap > ><CR>gv
|
||||
vnoremap < <<CR>gv
|
||||
|
||||
"au BufWinLeave * silent! mkview
|
||||
"au BufWinEnter * silent! loadview
|
||||
|
||||
au BufRead,BufNewFile *.go set filetype=go
|
||||
"au BufRead,BufNewFile *.coffee set filetype=coffee
|
||||
|
||||
let mapleader=","
|
||||
|
||||
set ignorecase
|
||||
set smartcase
|
||||
set gdefault
|
||||
set incsearch
|
||||
set showmatch
|
||||
set hlsearch
|
||||
nnoremap <leader><space> :noh<cr>
|
||||
|
||||
set ignorecase
|
||||
set smartcase
|
||||
set gdefault
|
||||
set incsearch
|
||||
set showmatch
|
||||
set hlsearch
|
||||
set autoindent
|
||||
"set signcolumn=yes
|
||||
set backspace=indent,eol,start
|
||||
set backup
|
||||
set backupdir=~/.vim/backup//
|
||||
set cmdheight=3
|
||||
"set clipboard=unnamed
|
||||
set directory=~/.vim/swap//
|
||||
set encoding=utf-8
|
||||
set expandtab
|
||||
set fileencodings=utf-8,iso-8859-15
|
||||
set guifont=Monaco:h16
|
||||
set hidden
|
||||
set ignorecase
|
||||
set laststatus=2
|
||||
set modeline
|
||||
set nobomb
|
||||
set nocompatible
|
||||
set shiftwidth=4
|
||||
set showcmd
|
||||
set smartcase
|
||||
set smarttab
|
||||
set softtabstop=4
|
||||
set spellfile=~/.vim/spellfile.utf-8.add
|
||||
set spelllang=en
|
||||
set tabstop=4
|
||||
set termencoding=utf-8
|
||||
set ttyfast
|
||||
set tw=76
|
||||
set undodir=~/.vim/undo//
|
||||
set undofile
|
||||
set wildignore+=*.pyc
|
||||
set writebackup
|
||||
|
||||
setglobal fileencoding=utf-8
|
||||
|
||||
autocmd FileType make setlocal noexpandtab
|
||||
autocmd FileType markdown setlocal spell
|
||||
au BufNewFile,BufFilePre,BufRead *.md set filetype=markdown
|
||||
autocmd BufNewFile,BufRead *.json set ft=javascript
|
||||
|
||||
"inoremap jj <Esc>
|
||||
|
||||
map N Nzz
|
||||
map n nzz
|
||||
"map <s-tab> <c-w><c-w>
|
||||
colorscheme koehler
|
||||
hi CursorLine term=none cterm=none ctermbg=none
|
||||
set t_Co=256
|
||||
set foldmethod=indent
|
||||
set foldminlines=5
|
||||
set nofoldenable "dont fold by default
|
||||
set foldlevel=1 "this is just what i use
|
||||
|
||||
"nnoremap <silent> <Space> @=(foldlevel('.')?'za':'l')<CR>
|
||||
"vnoremap <Space> zf
|
||||
|
||||
"nnoremap <silent> <Tab> :bn<CR>
|
||||
"nnoremap <silent> <Backspace> :bp<CR>
|
||||
"nnoremap <silent> <Leader><Enter> :ls<CR>
|
||||
|
||||
highlight ExtraWhitespace ctermbg=red guibg=red
|
||||
match ExtraWhitespace /\s\+$/
|
||||
autocmd BufWinEnter * match ExtraWhitespace /\s\+$/
|
||||
autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/
|
||||
autocmd InsertLeave * match ExtraWhitespace /\s\+$/
|
||||
autocmd BufWinLeave * call clearmatches()
|
||||
|
||||
let python_no_builtin_highlight = 1
|
||||
let python_no_doctest_code_highlight = 1
|
||||
let python_no_doctest_highlight = 1
|
||||
let python_no_exception_highlight = 1
|
||||
let python_no_number_highlight = 1
|
||||
let python_space_error_highlight = 1
|
||||
|
||||
let g:flake8_show_in_gutter=1 " show
|
|
@ -0,0 +1,16 @@
|
|||
top's Config File (Linux processes with windows)
|
||||
Id:i, Mode_altscr=0, Mode_irixps=1, Delay_time=1.0, Curwin=0
|
||||
Def fieldscur=¥¨³´»½ÀÄ·º¹Å&')*+,-./012568<>?ABCFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghij
|
||||
winflags=162740, sortindx=18, maxtasks=0, graph_cpus=2, graph_mems=0
|
||||
summclr=1, msgsclr=1, headclr=3, taskclr=1
|
||||
Job fieldscur=¥¦¹·º(³´Ä»½@<§Å)*+,-./012568>?ABCFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghij
|
||||
winflags=195508, sortindx=0, maxtasks=0, graph_cpus=2, graph_mems=0
|
||||
summclr=6, msgsclr=6, headclr=7, taskclr=6
|
||||
Mem fieldscur=¥º»<½¾¿ÀÁMBNÃD34·Å&'()*+,-./0125689FGHIJKLOPQRSTUVWXYZ[\]^_`abcdefghij
|
||||
winflags=195508, sortindx=21, maxtasks=0, graph_cpus=2, graph_mems=0
|
||||
summclr=5, msgsclr=5, headclr=4, taskclr=5
|
||||
Usr fieldscur=¥¦§¨ª°¹·ºÄÅ)+,-./1234568;<=>?@ABCFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghij
|
||||
winflags=195380, sortindx=3, maxtasks=0, graph_cpus=2, graph_mems=0
|
||||
summclr=3, msgsclr=3, headclr=2, taskclr=3
|
||||
Fixed_widest=0, Summ_mscale=0, Task_mscale=0, Zero_suppress=0
|
||||
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
apt-transport-https
|
||||
apt-utils
|
||||
aspell
|
||||
|
|
24
setup/run.sh
24
setup/run.sh
|
@ -5,3 +5,27 @@ TD="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd)"
|
|||
cd "$TD"
|
||||
|
||||
apt install -y $(cat packages.txt)
|
||||
|
||||
SSH_HOST_KEY_FILES="
|
||||
ssh_host_ecdsa_key
|
||||
ssh_host_ecdsa_key.pub
|
||||
ssh_host_ed25519_key
|
||||
ssh_host_ed25519_key.pub
|
||||
ssh_host_rsa_key
|
||||
ssh_host_rsa_key.pub
|
||||
"
|
||||
|
||||
for FN in $SSH_HOST_KEY_FILES ; do
|
||||
ln -s /hostroot/etc/ssh/$FN /etc/ssh/$FN
|
||||
done
|
||||
|
||||
# install other stuff here
|
||||
|
||||
# update pip
|
||||
# install black
|
||||
# install python packages
|
||||
# install yarn
|
||||
# install prettier
|
||||
# install vim-go
|
||||
|
||||
sudo -u $USERNAME_TO_ADD bash ./runuser.sh
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
#!/bin/bash
|
||||
|
||||
TD="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd)"
|
||||
|
||||
# original home
|
||||
OH="/hostroot/home/$USER_TO_ADD"
|
||||
|
||||
# container home
|
||||
export HOME="/home/$USER_TO_ADD"
|
||||
|
||||
rsync -avP /home/template/ $HOME/
|
||||
|
||||
# link ~/.home to original home
|
||||
ln -s "/hostroot/home/$USER_TO_ADD" $HOME/.home
|
||||
|
||||
# oh-my-zsh
|
||||
curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh > /tmp/installomz.sh
|
||||
export ZSH="$HOME/.zsh"
|
||||
bash /tmp/installomz.sh --unattended --keep-zshrc
|
||||
|
||||
# link in ssh key from original home
|
||||
ln -s ~/.home/.ssh/id_rsa ~/.ssh/id_rsa
|
||||
ln -s ~/.home/.ssh/id_rsa.pub ~/.ssh/id_rsa.pub
|
||||
|
||||
# move this to runtime
|
||||
#DEVDIR="$( cd ~/.home/dev >/dev/null 2>&1 && pwd -P)"
|
Loading…
Reference in New Issue