Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup-restore-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ runs:

- name: Build
shell: pwsh
run: dotnet build --no-restore --configuration Release /p:Deterministic=true /p:UseSharedCompilation=false /p:BuildInParallel=false /nodeReuse:false /bl:./artifacts/logs/release/build.release.binlog
run: dotnet build --no-restore --configuration Release /p:Deterministic=true /p:ContinuousIntegrationBuild=true /p:UseSharedCompilation=false /p:BuildInParallel=false /nodeReuse:false /bl:./artifacts/logs/release/build.release.binlog
1 change: 1 addition & 0 deletions .github/workflows/devskim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ on:
jobs:
lint:
name: DevSkim
# DevSkim requires x64 runner
runs-on: ubuntu-latest
permissions:
actions: read
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@ name: Lint

on:
push:
branches: [main]
pull_request:

permissions: {}

jobs:
build:
name: Lint
# super-linter requires x86_64; ARM64 is not supported upstream
# https://github.com/super-linter/super-linter/issues/5070
runs-on: ubuntu-latest

permissions:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ jobs:
# is generated with correct local paths.
test:
needs: [check-paths]
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -281,6 +282,7 @@ jobs:
# 2. msbuild.exe - csc runs on .NET Framework (VS), tested on Windows x64
analyzer-load-test:
needs: [check-paths, build]
timeout-minutes: 20
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -453,6 +455,7 @@ jobs:
# Builds from source on Linux ARM to get consistent benchmark results.
perf:
needs: [check-paths, build, test]
timeout-minutes: 60
runs-on: ubuntu-24.04-arm

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/powershell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
# Check https://github.com/microsoft/action-psscriptanalyzer for more info about the options.
# The below set up runs PSScriptAnalyzer to your entire repository and runs some basic security rules.
path: .\
path: ./
recurse: true
# Include your own basic security rules. Removing this option will run all the rules
includeRule: '"PSAvoidGlobalAliases", "PSAvoidUsingConvertToSecureStringWithPlainText"'
Expand Down
55 changes: 0 additions & 55 deletions .github/workflows/pr-labeler-current-milestone.yml

This file was deleted.

6 changes: 5 additions & 1 deletion .github/workflows/semantic-pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ on:
- edited
- synchronize

permissions: {}

jobs:
main:
name: Validate PR title
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
permissions:
pull-requests: read
steps:
- uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6
env:
Expand Down
1 change: 1 addition & 0 deletions build/targets/compiler/Compiler.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project>
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Use the default C# version for the SDK pinned in global.json -->
<LangVersion>default</LangVersion>
Comment thread
rjmurillo-bot marked this conversation as resolved.
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
Loading