Skip to content

Commit 25d8f0e

Browse files
authored
Merge branch 'main' into calumgrant/bmn/wrong-type-format-arg-linkage
2 parents 6e3a169 + 1066b88 commit 25d8f0e

File tree

645 files changed

+34912
-13470
lines changed

Some content is hidden

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

645 files changed

+34912
-13470
lines changed

.bazelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ common --enable_platform_specific_config
22
# because we use --override_module with `%workspace%`, the lock file is not stable
33
common --lockfile_mode=off
44

5+
# Build release binaries by default, can be overwritten to in local.bazelrc and set to `fastbuild` or `dbg`
6+
build --compilation_mode opt
7+
58
# when building from this repository in isolation, the internal repository will not be found at ..
69
# where `MODULE.bazel` looks for it. The following will get us past the module loading phase, so
710
# that we can build things that do not rely on that

.devcontainer/swift/Dockerfile

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

.devcontainer/swift/devcontainer.json

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

.devcontainer/swift/root.sh

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

.devcontainer/swift/update-codeql.sh

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

.devcontainer/swift/user.sh

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

.github/pull_request_template.md

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

.github/workflows/swift.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,6 @@ jobs:
4848
steps:
4949
- uses: actions/checkout@v4
5050
- uses: ./swift/actions/build-and-test
51-
build-and-test-linux:
52-
if: github.repository_owner == 'github'
53-
runs-on: ubuntu-22.04
54-
steps:
55-
- uses: actions/checkout@v4
56-
- uses: ./swift/actions/build-and-test
5751
qltests-macos:
5852
if: ${{ github.repository_owner == 'github' && github.event_name == 'pull_request' }}
5953
needs: build-and-test-macos

actions/extractor/tools/autobuild-impl.ps1

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,16 @@ if (($null -ne $env:LGTM_INDEX_INCLUDE) -or ($null -ne $env:LGTM_INDEX_EXCLUDE)
22
Write-Output 'Path filters set. Passing them through to the JavaScript extractor.'
33
} else {
44
Write-Output 'No path filters set. Using the default filters.'
5+
# Note: We're adding the `reusable_workflows` subdirectories to proactively
6+
# record workflows that were called cross-repo, check them out locally,
7+
# and enable an interprocedural analysis across the workflow files.
8+
# These workflows follow the convention `.github/reusable_workflows/<nwo>/*.ya?ml`
59
$DefaultPathFilters = @(
610
'exclude:**/*',
7-
'include:.github/workflows/**/*.yml',
8-
'include:.github/workflows/**/*.yaml',
11+
'include:.github/workflows/*.yml',
12+
'include:.github/workflows/*.yaml',
13+
'include:.github/reusable_workflows/**/*.yml',
14+
'include:.github/reusable_workflows/**/*.yaml',
915
'include:**/action.yml',
1016
'include:**/action.yaml'
1117
)

actions/extractor/tools/autobuild.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,16 @@
22

33
set -eu
44

5+
# Note: We're adding the `reusable_workflows` subdirectories to proactively
6+
# record workflows that were called cross-repo, check them out locally,
7+
# and enable an interprocedural analysis across the workflow files.
8+
# These workflows follow the convention `.github/reusable_workflows/<nwo>/*.ya?ml`
59
DEFAULT_PATH_FILTERS=$(cat << END
610
exclude:**/*
7-
include:.github/workflows/**/*.yml
8-
include:.github/workflows/**/*.yaml
11+
include:.github/workflows/*.yml
12+
include:.github/workflows/*.yaml
13+
include:.github/reusable_workflows/**/*.yml
14+
include:.github/reusable_workflows/**/*.yaml
915
include:**/action.yml
1016
include:**/action.yaml
1117
END

0 commit comments

Comments
 (0)