Add windows debug tools (#93)
This commit is contained in:
parent
292e221814
commit
34155478af
16 changed files with 13 additions and 14 deletions
1
.gitattributes
vendored
1
.gitattributes
vendored
|
@ -1,3 +1,2 @@
|
|||
*.sh -crlf
|
||||
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
[include]
|
||||
path = dev/dotfiles/.gitconfig_includes.common
|
||||
path = dev/dotfiles/.gitconfig_includes.cygwin
|
||||
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ language:
|
|||
- bash
|
||||
|
||||
script:
|
||||
- ./test
|
||||
- ./test.sh
|
||||
|
||||
env:
|
||||
- DETECTED_OS=fedora:24 DOCKER_IMAGE=cyplo/fedora24_base
|
||||
|
|
|
@ -17,7 +17,7 @@ install:
|
|||
cd ~/dev
|
||||
git clone git@github.com:cyplo/dotfiles.git
|
||||
cd dotfiles
|
||||
./ubuntu/configure_fresh_system
|
||||
./ubuntu/configure_fresh_system.sh
|
||||
# or /debian/.. or /fedora/..
|
||||
|
||||
GNOME extensions list:
|
||||
|
|
|
@ -42,7 +42,7 @@ ln -vfs "$DIR/.zprofile" ~/.zprofile
|
|||
ln -vfs "$DIR/.zprezto/runcoms/zshenv" ~/.zshenv
|
||||
ln -vfs "$DIR/.zshrc" ~/.zshrc
|
||||
|
||||
ln -vfs "$DIR/.setenv" ~/.
|
||||
ln -vfs "$DIR/.setenv.sh" ~/.setenv
|
||||
ln -vfs "$DIR/.Slic3r" ~/.
|
||||
ln -vfs "$DIR/.ghci" ~/.
|
||||
ln -vfs "$DIR/.conkyrc" ~/.
|
|
@ -50,5 +50,5 @@ fi
|
|||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
DIR="$DIR/../"
|
||||
DIR="$DIR" $DIR/common/configure_fresh_system
|
||||
DIR="$DIR" $DIR/common/configure_fresh_system.sh
|
||||
|
2
debian/test_insider
vendored
2
debian/test_insider
vendored
|
@ -16,5 +16,5 @@ cd $HOME
|
|||
mkdir -p dev/
|
||||
cp -rv temp/dotfiles dev/
|
||||
|
||||
./dev/dotfiles/debian/configure_fresh_system
|
||||
./dev/dotfiles/debian/configure_fresh_system.sh
|
||||
|
||||
|
|
|
@ -75,5 +75,5 @@ if [[ -z $NO_COMPILE_VIM ]]; then
|
|||
fi
|
||||
|
||||
DIR="$DIR/../"
|
||||
DIR="$DIR" $DIR/common/configure_fresh_system
|
||||
DIR="$DIR" $DIR/common/configure_fresh_system.sh
|
||||
|
|
@ -13,5 +13,5 @@ cd $HOME
|
|||
mkdir -p dev/
|
||||
cp -rv temp/dotfiles dev/
|
||||
|
||||
./dev/dotfiles/fedora/configure_fresh_system
|
||||
./dev/dotfiles/fedora/configure_fresh_system.sh
|
||||
|
||||
|
|
|
@ -11,5 +11,5 @@ eval ${INSTALL_COMMAND}
|
|||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
DIR="$DIR/../"
|
||||
DONT_CHANGE_SHELL=TRUE DIR="$DIR" $DIR/common/configure_fresh_system
|
||||
DONT_CHANGE_SHELL=TRUE DIR="$DIR" $DIR/common/configure_fresh_system.sh
|
||||
|
|
@ -22,4 +22,4 @@ fi
|
|||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
DIR="$DIR/../"
|
||||
DIR="$DIR" $DIR/common/configure_fresh_system
|
||||
DIR="$DIR" $DIR/common/configure_fresh_system.sh
|
|
@ -15,5 +15,5 @@ cd $HOME
|
|||
mkdir -p dev/
|
||||
cp -rv temp/dotfiles dev/
|
||||
|
||||
./dev/dotfiles/ubuntu/configure_fresh_system
|
||||
./dev/dotfiles/ubuntu/configure_fresh_system.sh
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
@echo on
|
||||
choco install -y --allowEmptyChecksum firefox googlechrome wget notepadplusplus sublimetext3 mono monodevelop gtksharp visualstudiocode p4merge dotnet4.5 nodejs.install conemu dejavufonts ag golang windows-adk-all
|
||||
choco install -y --allowEmptyChecksum firefox googlechrome wget notepadplusplus sublimetext3 mono monodevelop gtksharp visualstudiocode p4merge dotnet4.5 nodejs.install conemu dejavufonts ag golang wireshark procexp procmon drmemory.install WinPcap
|
||||
call refreshenv
|
||||
|
||||
wget -c https://cygwin.com/setup-x86_64.exe
|
||||
|
|
|
@ -40,7 +40,7 @@ python /tmp/get-pip.py
|
|||
# expose all the binaries fetched during the outer build
|
||||
export PATH="$OUTER_CLONE:$PATH"
|
||||
|
||||
$DIR/common/configure_fresh_system
|
||||
$DIR/common/configure_fresh_system.sh
|
||||
ln -vfs $DIR/windows_cygwin/.minttyrc $HOME/
|
||||
ln -vfs "$DOTFILES_PATH/.gitconfig.cygwin" $HOME/.gitconfig
|
||||
ln -vfs $DIR/.vimrc.cygwin $HOME/.vimrc
|
||||
|
|
Loading…
Reference in a new issue