Skip to content

Commit ec2d924

Browse files
authored
Merge branch 'master' into fix-40255
2 parents e96bc6a + 260b414 commit ec2d924

File tree

2,136 files changed

+285348
-190481
lines changed

Some content is hidden

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

2,136 files changed

+285348
-190481
lines changed

.buildkite-external-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
main

.clang-format

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ StatementMacros:
109109
- checked_intrinsic_ctype
110110
- cvt_iintrinsic
111111
- fpiseq_n
112-
- fpislt_n
113112
- ter_fintrinsic
114113
- ter_intrinsic_ctype
115114
- un_fintrinsic

.clangd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CompileFlags:
2+
Add: [-I., -I.., -Iflisp, -Isupport, -I../support, -I../usr/include, -I../../usr/include, -Wall,]

.codecov.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
coverage:
2+
status:
3+
project: off
4+
patch: off

.devcontainer/Dockerfile

Lines changed: 0 additions & 3 deletions
This file was deleted.

.devcontainer/devcontainer.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
2-
"extensions": [
3-
"julialang.language-julia",
4-
"ms-vscode.cpptools"
5-
],
6-
7-
"dockerFile": "Dockerfile"
2+
"image": "docker.io/library/julia:latest",
3+
"customizations": {
4+
"vscode": {
5+
"extensions": [
6+
"julialang.language-julia",
7+
"ms-vscode.cpptools"
8+
]
9+
}
10+
},
11+
"onCreateCommand": "apt-get update && apt-get install -y build-essential libatomic1 python3 gfortran perl wget m4 cmake pkg-config git"
812
}

.git-blame-ignore-revs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# .git-blame-ignore-revs
2+
# whitespace: end text files with single newlines
3+
3903fa54a638d4546ef50e56f91f0705a8ab11ef
4+
# whitespace: use only UNIX line endings (\n)
5+
e66bfa5dd32f93e76068c00ad882c1fc839c5af8
6+
# whitespace: replace non-breaking space => space
7+
100a741e7ab38c91d48cc929bb001afc8e09261f
8+
# whitespace: replace tabs => space
9+
b03e8ab9c7bd3e001add519571858fa04d6a249b
10+
# whitespace: replace 2-space => 4-space for indentation
11+
f1b567507731129f90ca0dffc8fbc0ed98b6a15d
12+
# whitespace: replace multiple spaces after period with a single space
13+
f942c29bb0d02cc24f19712c642ac72ffc85a26b

.github/CODEOWNERS

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,14 @@
1-
/.github/workflows/ @JuliaLang/github-actions
1+
CODEOWNERS @JuliaLang/github-actions
2+
/.github/ @JuliaLang/github-actions
3+
/.buildkite/ @JuliaLang/github-actions
4+
5+
/.github/workflows/rerun_failed.yml @DilumAluthge
6+
/.github/workflows/statuses.yml @DilumAluthge
7+
/.github/workflows/PrAssignee.yml @LilithHafner @DilumAluthge
8+
/base/special/ @oscardssmith
9+
/base/sort.jl @LilithHafner
10+
/test/sorting.jl @LilithHafner
11+
/stdlib/*_jll @giordano
12+
/base/binaryplatforms.jl @giordano
13+
/src/julia_gcext.h @fingolfin
14+
/test/gcext/gcext.c @fingolfin

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
open-pull-requests-limit: 100
8+
labels:
9+
- "dependencies"
10+
- "github-actions"
11+
- "domain:ci"

.github/workflows/LabelCheck.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Labels
2+
3+
permissions:
4+
contents: read
5+
on:
6+
pull_request:
7+
types: [labeled, unlabeled, opened, reopened, edited, synchronize]
8+
jobs:
9+
enforce-labels:
10+
name: Check for blocking labels
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 2
13+
steps:
14+
- uses: yogevbd/enforce-label-action@a3c219da6b8fa73f6ba62b68ff09c469b3a1c024 # 2.2.2
15+
with:
16+
# REQUIRED_LABELS_ANY: "bug,enhancement,skip-changelog"
17+
# REQUIRED_LABELS_ANY_DESCRIPTION: "Select at least one label ['bug','enhancement','skip-changelog']"
18+
BANNED_LABELS: "needs docs,needs compat annotation,needs more info,needs nanosoldier run,needs news,needs pkgeval,needs tests,needs decision,DO NOT MERGE,status:DO NOT MERGE"
19+
BANNED_LABELS_DESCRIPTION: "A PR should not be merged with `needs *` or `status:DO NOT MERGE` labels"

0 commit comments

Comments
 (0)