Skip to content

Commit 496d5c6

Browse files
committed
tmp
1 parent c5127d8 commit 496d5c6

File tree

7,501 files changed

+515705
-768443
lines changed

Some content is hidden

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

7,501 files changed

+515705
-768443
lines changed

.bazelrc

+1-3
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ build:crosslinuxfips '--workspace_status_command=./build/bazelutil/stamp.sh x86_
8787
build:crosslinuxfips --config=crosslinuxfipsbase
8888
build:crosslinuxfipsbase --platforms=//build/toolchains:cross_linux
8989
build:crosslinuxfipsbase --config=cross
90-
build:crosslinuxfipsbase --@io_bazel_rules_go//go/toolchain:sdk_version=1.23.7fips
90+
build:crosslinuxfipsbase --@io_bazel_rules_go//go/toolchain:sdk_version=1.22.8fips
9191
build:crosswindows '--workspace_status_command=./build/bazelutil/stamp.sh x86_64-w64-mingw32'
9292
build:crosswindows --config=crosswindowsbase
9393
build:crosswindowsbase --platforms=//build/toolchains:cross_windows
@@ -117,8 +117,6 @@ build:macos --host_action_env=PATH=/opt/homebrew/bin:/opt/local/bin:/usr/local/b
117117
build:macos --linkopt="-Xlinker"
118118
build:macos --linkopt="-no_warn_duplicate_libraries"
119119

120-
build:pgo --@io_bazel_rules_go//go/config:pgoprofile=@pgo_profile//:profile.pprof
121-
122120
build:engflowbase --define=EXECUTOR=remote
123121
build:engflowbase --disk_cache=
124122
build:engflowbase --experimental_inmemory_dotd_files

.github/CODEOWNERS

+50-58
Large diffs are not rendered by default.

.github/actions/microbenchmark-build/action.yml

-55
This file was deleted.

.github/actions/microbenchmark-run/action.yml

-32
This file was deleted.

.github/workflows/auto-merge-backports.yml

-89
This file was deleted.

.github/workflows/code-cover-publish.yaml

+3-7
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ jobs:
1919
github.event.workflow_run.conclusion == 'success'
2020
steps:
2121
- name: 'Download artifact'
22-
uses: actions/github-script@v7.0.1
22+
uses: actions/github-script@v3.1.0
2323
with:
2424
script: |
25-
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
25+
var artifacts = await github.actions.listWorkflowRunArtifacts({
2626
owner: context.repo.owner,
2727
repo: context.repo.repo,
2828
run_id: ${{github.event.workflow_run.id }},
2929
});
3030
var matchArtifact = artifacts.data.artifacts.filter((artifact) => {
3131
return artifact.name == "cover"
3232
})[0];
33-
var download = await github.rest.actions.downloadArtifact({
33+
var download = await github.actions.downloadArtifact({
3434
owner: context.repo.owner,
3535
repo: context.repo.repo,
3636
artifact_id: matchArtifact.id,
@@ -56,7 +56,3 @@ jobs:
5656
parent: false
5757
destination: 'crl-codecover-public/pr-cockroach/'
5858
process_gcloudignore: false
59-
60-
- name: 'Call DeadManSnitch'
61-
run: |
62-
curl -X GET 'https://nosnch.in/c2d75963ee' -d 'message=Code coverage uploaded to GCS'

.github/workflows/github-actions-essential-ci.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ on:
4949
- "!staging-v23.1*"
5050
- "!staging-v23.2*"
5151
concurrency:
52-
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
52+
group: ${{ github.head_ref || github.run_id }}
5353
cancel-in-progress: true
5454
jobs:
5555
acceptance:
@@ -167,10 +167,6 @@ jobs:
167167
- run: ./build/github/get-engflow-keys.sh
168168
- name: run local roachtests
169169
run: ./build/github/local-roachtest.sh crosslinux
170-
- uses: actions/upload-artifact@v4
171-
with:
172-
name: local_roachtest_test_summary.tsv
173-
path: artifacts/test_summary.tsv
174170
- uses: actions/upload-artifact@v4
175171
if: ${{ failure() }}
176172
with:
@@ -192,10 +188,6 @@ jobs:
192188
- run: ./build/github/get-engflow-keys.sh
193189
- name: run local roachtests
194190
run: ./build/github/local-roachtest.sh crosslinuxfips
195-
- uses: actions/upload-artifact@v4
196-
with:
197-
name: local_roachtest_fips_test_summary.tsv
198-
path: artifacts/test_summary.tsv
199191
- uses: actions/upload-artifact@v4
200192
if: ${{ failure() }}
201193
with:

.github/workflows/microbenchmarks-ci.yaml

-100
This file was deleted.

.github/workflows/update_releases.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,10 @@ jobs:
2727
matrix:
2828
branch:
2929
- "master"
30+
- "release-23.1"
3031
- "release-23.2"
3132
- "release-24.1"
32-
- "release-24.3"
33-
- "release-25.1"
34-
- "release-25.2"
33+
- "release-24.2"
3534
name: Update pkg/testutils/release/cockroach_releases.yaml on ${{ matrix.branch }}
3635
runs-on: ubuntu-latest
3736
steps:

.gitignore

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ artifacts
1414
/bin.*
1515
/lib
1616
/lib.*
17+
/tmp
1718
.buildinfo
1819
# cockroach-data, cockroach{,.race}-{darwin,linux,windows}-*
1920
/cockroach*
@@ -32,8 +33,6 @@ work-Fuzz*
3233
# Instrumentation artifacts.
3334
/instrument*
3435
.instrumentor_exclusions.tmp
35-
# Temp files.
36-
tmp/
3736

3837
# Custom or private env vars (e.g. internal keys, access tokens, etc).
3938
customenv.mk
@@ -57,7 +56,7 @@ build/variables.mk
5756
*.pb.go
5857
*.pb.gw.go
5958
pkg/ccl/kvccl/kvtenantccl/upgradeinterlockccl/generated_test.go
60-
pkg/backup/data_driven_generated_test.go
59+
pkg/ccl/backupccl/data_driven_generated_test.go
6160
pkg/testutils/serverutils/*_generated.go
6261

6362
# Temporary directories during gomock generate

0 commit comments

Comments
 (0)