Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .github/workflows/devskim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
jobs:
lint:
name: DevSkim
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
permissions:
actions: read
contents: read
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Lint

on:
push:
branches: [main]
pull_request:

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.

3 changes: 3 additions & 0 deletions .github/workflows/semantic-pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- edited
- synchronize

permissions:
pull-requests: read

jobs:
main:
name: Validate PR title
Expand Down
3 changes: 2 additions & 1 deletion build/targets/compiler/Compiler.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<Project>
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>default</LangVersion>
<!-- Pin to the C# version shipped with the SDK in global.json -->
<LangVersion>13</LangVersion>
Comment thread
rjmurillo-bot marked this conversation as resolved.
Outdated
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down
Loading