Skip to content

Commit facab2b

Browse files
chore: update integration tests for CI
1 parent 1da9e89 commit facab2b

File tree

14,332 files changed

+3369887
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

14,332 files changed

+3369887
-0
lines changed

hybrid-cloud-poc/cleanup.sh

Lines changed: 444 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Contributing to Go
2+
3+
Go is an open source project.
4+
5+
It is the work of hundreds of contributors. We appreciate your help!
6+
7+
## Before filing an issue
8+
9+
If you are unsure whether you have found a bug, please consider asking in the [golang-nuts mailing
10+
list](https://groups.google.com/forum/#!forum/golang-nuts) or [other forums](https://golang.org/help/) first. If
11+
the behavior you are seeing is confirmed as a bug or issue, it can easily be re-raised in the issue tracker.
12+
13+
## Filing issues
14+
15+
Sensitive security-related issues should be reported to [security@golang.org](mailto:security@golang.org).
16+
See the [security policy](https://golang.org/security) for details.
17+
18+
The recommended way to file an issue is by running `go bug`.
19+
Otherwise, when filing an issue, make sure to answer these five questions:
20+
21+
1. What version of Go are you using (`go version`)?
22+
2. What operating system and processor architecture are you using?
23+
3. What did you do?
24+
4. What did you expect to see?
25+
5. What did you see instead?
26+
27+
For change proposals, see [Proposing Changes To Go](https://go.dev/s/proposal-process).
28+
29+
## Contributing code
30+
31+
Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html) before sending patches.
32+
33+
Unless otherwise noted, the Go source files are distributed under
34+
the BSD-style license found in the LICENSE file.
35+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright 2009 The Go Authors.
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
* Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
* Redistributions in binary form must reproduce the above
10+
copyright notice, this list of conditions and the following disclaimer
11+
in the documentation and/or other materials provided with the
12+
distribution.
13+
* Neither the name of Google LLC nor the names of its
14+
contributors may be used to endorse or promote products derived from
15+
this software without specific prior written permission.
16+
17+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Additional IP Rights Grant (Patents)
2+
3+
"This implementation" means the copyrightable works distributed by
4+
Google as part of the Go project.
5+
6+
Google hereby grants to You a perpetual, worldwide, non-exclusive,
7+
no-charge, royalty-free, irrevocable (except as stated in this section)
8+
patent license to make, have made, use, offer to sell, sell, import,
9+
transfer and otherwise run, modify and propagate the contents of this
10+
implementation of Go, where such license applies only to those patent
11+
claims, both currently owned or controlled by Google and acquired in
12+
the future, licensable by Google that are necessarily infringed by this
13+
implementation of Go. This grant does not include claims that would be
14+
infringed only as a consequence of further modification of this
15+
implementation. If you or your agent or exclusive licensee institute or
16+
order or agree to the institution of patent litigation against any
17+
entity (including a cross-claim or counterclaim in a lawsuit) alleging
18+
that this implementation of Go or any code incorporated within this
19+
implementation of Go constitutes direct or contributory patent
20+
infringement, or inducement of patent infringement, then any patent
21+
rights granted to you under this License for this implementation of Go
22+
shall terminate as of the date such litigation is filed.
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# The Go Programming Language
2+
3+
Go is an open source programming language that makes it easy to build simple,
4+
reliable, and efficient software.
5+
6+
![Gopher image](https://golang.org/doc/gopher/fiveyears.jpg)
7+
*Gopher image by [Renee French][rf], licensed under [Creative Commons 4.0 Attribution license][cc4-by].*
8+
9+
Our canonical Git repository is located at https://go.googlesource.com/go.
10+
There is a mirror of the repository at https://github.com/golang/go.
11+
12+
Unless otherwise noted, the Go source files are distributed under the
13+
BSD-style license found in the LICENSE file.
14+
15+
### Download and Install
16+
17+
#### Binary Distributions
18+
19+
Official binary distributions are available at https://go.dev/dl/.
20+
21+
After downloading a binary release, visit https://go.dev/doc/install
22+
for installation instructions.
23+
24+
#### Install From Source
25+
26+
If a binary distribution is not available for your combination of
27+
operating system and architecture, visit
28+
https://go.dev/doc/install/source
29+
for source installation instructions.
30+
31+
### Contributing
32+
33+
Go is the work of thousands of contributors. We appreciate your help!
34+
35+
To contribute, please read the contribution guidelines at https://go.dev/doc/contribute.
36+
37+
Note that the Go project uses the issue tracker for bug reports and
38+
proposals only. See https://go.dev/wiki/Questions for a list of
39+
places to ask questions about the Go language.
40+
41+
[rf]: https://reneefrench.blogspot.com/
42+
[cc4-by]: https://creativecommons.org/licenses/by/4.0/
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
We support the past two Go releases (for example, Go 1.17.x and Go 1.18.x when Go 1.18.x is the latest stable release).
6+
7+
See https://go.dev/wiki/Go-Release-Cycle and in particular the
8+
[Release Maintenance](https://go.dev/wiki/Go-Release-Cycle#release-maintenance)
9+
part of that page.
10+
11+
## Reporting a Vulnerability
12+
13+
See https://go.dev/security/policy for how to report a vulnerability.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
go1.25.3
2+
time 2025-10-13T16:08:43Z
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Files in this directory are data for Go's API checker ("go tool api", in src/cmd/api).
2+
3+
Each file is a list of API features, one per line.
4+
5+
go1.txt (and similarly named files) are frozen once a version has been
6+
shipped. Each file adds new lines but does not remove any.
7+
8+
except.txt lists features that may disappear without breaking true
9+
compatibility.
10+
11+
Starting with go1.19.txt, each API feature line must end in "#nnnnn"
12+
giving the GitHub issue number of the proposal issue that accepted
13+
the new API. This helps with our end-of-cycle audit of new APIs.
14+
The same requirement applies to next/* (described below), which will
15+
become a go1.XX.txt for XX >= 19.
16+
17+
The next/ directory contains the only files intended to be mutated.
18+
Each file in that directory contains a list of features that may be added
19+
to the next release of Go. The files in this directory only affect the
20+
warning output from the go api tool. Each file should be named
21+
nnnnn.txt, after the issue number for the accepted proposal.
22+
(The #nnnnn suffix must also appear at the end of each line in the file;
23+
that will be preserved when next/*.txt is concatenated into go1.XX.txt.)
24+
25+
When you add a file to the api/next directory, you must add at least one file
26+
under doc/next. See doc/README.md for details.

0 commit comments

Comments
 (0)