Codebase list golang-github-containerd-btrfs / 8693a3a
Update upstream source from tag 'upstream/1.0.0' Update to upstream version '1.0.0' with Debian dir 387cf9380b7e610f757250ef792953fd1b512c3f Shengjing Zhu 2 years ago
7 changed file(s) with 13 addition(s) and 47 deletion(s). Raw diff Collapse all Expand all
0 name: Go
0 name: CI
11
22 on:
33 push:
1414 steps:
1515
1616 - name: Set up Go
17 uses: actions/setup-go@v1
17 uses: actions/setup-go@v2
1818 with:
19 go-version: 1.15
19 go-version: 1.16.x
2020 id: go
2121
2222 - name: Setup environment
2222 *.exe
2323 *.test
2424 *.prof
25
26 # Support running go modules in vendor mode for local development
27 /vendor/
+0
-24
.travis.yml less more
0 dist: bionic
1 language: go
2
3 go:
4 - "1.13.x"
5 - "1.15.x"
6
7 before_install:
8 - sudo apt-get update
9 - sudo apt-get install -y btrfs-tools linux-headers-generic
10 - dpkg -L btrfs-tools
11 - ls /usr/include/btrfs
12
13 install:
14 - GO111MODULE="on" go mod vendor
15 - go get -u github.com/vbatts/git-validation
16 - go get -u github.com/kunalkushwaha/ltag
17
18 before_script:
19 - pushd ..; git clone https://github.com/containerd/project; popd
20
21 script:
22 - DCO_VERBOSITY=-q ../project/script/validate/dco
23 - ../project/script/validate/fileheader ../project/
00 # go-btrfs
1 [![GoDoc](https://godoc.org/github.com/containerd/btrfs?status.svg)](https://godoc.org/github.com/containerd/btrfs)
2 [![Build Status](https://travis-ci.org/containerd/btrfs.svg?branch=master)](https://travis-ci.org/containerd/btrfs)
1
2 [![PkgGoDev](https://pkg.go.dev/badge/github.com/containerd/btrfs)](https://pkg.go.dev/github.com/containerd/btrfs)
3 [![Build Status](https://github.com/containerd/btrfs/workflows/CI/badge.svg)](https://github.com/containerd/btrfs/actions?query=workflow%3ACI)
4 [![Go Report Card](https://goreportcard.com/badge/github.com/containerd/btrfs)](https://goreportcard.com/report/github.com/containerd/btrfs)
35
46 Native Go bindings for btrfs.
57
1313 limitations under the License.
1414 */
1515
16 /*
17 Copyright The containerd Authors
18
19 Licensed under the Apache License, Version 2.0 (the "License");
20 you may not use this file except in compliance with the License.
21 You may obtain a copy of the License at
22
23 http://www.apache.org/licenses/LICENSE-2.0
24
25 Unless required by applicable law or agreed to in writing, software
26 distributed under the License is distributed on an "AS IS" BASIS,
27 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
28 See the License for the specific language governing permissions and
29 limitations under the License.
30 */
3116 package main
3217
3318 import (
11
22 go 1.15
33
4 require github.com/pkg/errors v0.8.1
4 require github.com/pkg/errors v0.9.1
0 github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=
1 github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
0 github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
1 github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=