1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-06 11:02:41 +03:00

Bring back files from vendor directory that we accidentally excluded

This commit is contained in:
Stefan Haller
2025-07-06 15:44:18 +02:00
parent 59b68f9794
commit f8865c4182
21 changed files with 252 additions and 0 deletions

22
vendor/github.com/atotto/clipboard/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,22 @@
language: go
os:
- linux
- osx
- windows
go:
- go1.13.x
- go1.x
services:
- xvfb
before_install:
- export DISPLAY=:99.0
script:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install xsel; fi
- go test -v .
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install xclip; fi
- go test -v .

11
vendor/github.com/buger/jsonparser/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,11 @@
language: go
arch:
- amd64
- ppc64le
go:
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
script: go test -v ./.

View File

@@ -0,0 +1,11 @@
language: go
go:
- 1.2
before_install:
- go get github.com/onsi/ginkgo/...
- go get github.com/onsi/gomega/...
- go install github.com/onsi/ginkgo/ginkgo
script: PATH=$PATH:$HOME/gopath/bin ginkgo -r .
branches:
only:
- master

13
vendor/github.com/gdamore/encoding/.appveyor.yml generated vendored Normal file
View File

@@ -0,0 +1,13 @@
version: 1.0.{build}
clone_folder: c:\gopath\src\github.com\gdamore\encoding
environment:
GOPATH: c:\gopath
build_script:
- go version
- go env
- SET PATH=%LOCALAPPDATA%\atom\bin;%GOPATH%\bin;%PATH%
- go get -t ./...
- go build
- go install ./...
test_script:
- go test ./...

13
vendor/github.com/gdamore/tcell/v2/.appveyor.yml generated vendored Normal file
View File

@@ -0,0 +1,13 @@
version: 1.0.{build}
clone_folder: c:\gopath\src\github.com\gdamore\tcell
environment:
GOPATH: c:\gopath
build_script:
- go version
- go env
- SET PATH=%LOCALAPPDATA%\atom\bin;%GOPATH%\bin;%PATH%
- go get -t ./...
- go build
- go install ./...
test_script:
- go test ./...

18
vendor/github.com/gdamore/tcell/v2/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,18 @@
language: go
go:
- 1.15.x
- master
arch:
- amd64
- ppc64le
before_install:
- go get -t -v ./...
script:
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)

7
vendor/github.com/go-errors/errors/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,7 @@
language: go
go:
- "1.8.x"
- "1.11.x"
- "1.16.x"
- "1.21.x"

18
vendor/github.com/go-logfmt/logfmt/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,18 @@
language: go
sudo: false
go:
- "1.7.x"
- "1.8.x"
- "1.9.x"
- "1.10.x"
- "1.11.x"
- "1.12.x"
- "1.13.x"
- "tip"
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
script:
- goveralls -service=travis-ci

9
vendor/github.com/gobwas/glob/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,9 @@
sudo: false
language: go
go:
- 1.5.3
script:
- go test -v ./...

7
vendor/github.com/integrii/flaggy/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,7 @@
{
"language": "go",
"os": "linux",
"group": "stable",
"dist": "trusty",
"script": "go get -v && go test -v"
}

1
vendor/github.com/kevinburke/ssh_config/.mailmap generated vendored Normal file
View File

@@ -0,0 +1 @@
Kevin Burke <kevin@burke.dev> Kevin Burke <kev@inburke.com>

4
vendor/github.com/mitchellh/go-ps/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,4 @@
language: go
go:
- 1.2.1

18
vendor/github.com/sahilm/fuzzy/.editorconfig generated vendored Normal file
View File

@@ -0,0 +1,18 @@
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
[*.sh]
indent_size = 4
[Makefile]
indent_style = tab
indent_size = 4
[*.go]
indent_style = tab
indent_size = 4

5
vendor/github.com/sahilm/fuzzy/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,5 @@
language: go
go:
- 1.x
script:
- make

7
vendor/github.com/samber/lo/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,7 @@
language: go
before_install:
- go mod download
- make tools
go:
- "1.18"
script: make test

7
vendor/github.com/sanity-io/litter/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,7 @@
arch:
- amd64
- ppc64le
language: go
go:
- 1.14.x

26
vendor/github.com/sasha-s/go-deadlock/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,26 @@
arch:
- amd64
- ppc64le
language: go
sudo: false
go:
- 1.9.x
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
- 1.15.x
- 1.16.x
- master
- tip
before_install:
- go get golang.org/x/tools/cmd/cover
- go get -t -v ./...
script:
- ./test.sh
after_success:
- bash <(curl -s https://codecov.io/bash)

15
vendor/github.com/sirupsen/logrus/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,15 @@
language: go
go_import_path: github.com/sirupsen/logrus
git:
depth: 1
env:
- GO111MODULE=on
go: 1.15.x
os: linux
install:
- ./travis/install.sh
script:
- cd ci
- go run mage.go -v -w ../ crossBuild
- go run mage.go -v -w ../ lint
- go run mage.go -v -w ../ test

16
vendor/github.com/spkg/bom/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,16 @@
language: go
go:
- 1.6
- 1.5
- 1.4
- 1.3
install:
- go get github.com/stretchr/testify/assert
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- go test -v -covermode=count -coverprofile=coverage.out
- $(go env GOPATH | awk 'BEGIN{FS=":"} {print $1}')/bin/goveralls -coverprofile=coverage.out -service=travis-ci