mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 11:14:25 +00:00
Update autobuild files.
This commit is contained in:
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
@@ -24,7 +24,7 @@ jobs:
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: |
|
||||
8.0.x
|
||||
10.0.x
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v2
|
||||
|
||||
6
.github/workflows/dotnet.yml
vendored
6
.github/workflows/dotnet.yml
vendored
@@ -14,8 +14,8 @@ jobs:
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: 8.0
|
||||
dotnet-version: 10.0
|
||||
- name: Restore dependencies
|
||||
run: dotnet restore Aaru.sln
|
||||
run: dotnet restore Aaru.slnx
|
||||
- name: Build
|
||||
run: dotnet build --no-restore Aaru.sln
|
||||
run: dotnet build --no-restore Aaru.slnx
|
||||
|
||||
16
.travis.yml
16
.travis.yml
@@ -1,16 +0,0 @@
|
||||
language: csharp
|
||||
solution: Aaru.sln
|
||||
mono: none
|
||||
dotnet: 6.0.100
|
||||
script:
|
||||
- dotnet restore Aaru.sln
|
||||
- dotnet build Aaru.sln
|
||||
notifications:
|
||||
irc:
|
||||
channels:
|
||||
- "irc.libera.chat#Aaru"
|
||||
skip_join: true
|
||||
template:
|
||||
- "Commit %{commit} by %{author} in %{branch} %{result} after %{duration}."
|
||||
- "Commit changes: %{commit_subject}"
|
||||
- "Details on %{build_url}, changes on %{compare_url}"
|
||||
@@ -7,9 +7,7 @@
|
||||
<File Path=".editorconfig" />
|
||||
<File Path=".gitignore" />
|
||||
<File Path=".globalconfig" />
|
||||
<File Path=".travis.yml" />
|
||||
<File Path="Aaru.sln.DotSettings" />
|
||||
<File Path="azure-pipelines.yml" />
|
||||
<File Path="build.sh" />
|
||||
<File Path="Changelog.md" />
|
||||
<File Path="codealike.json" />
|
||||
|
||||
@@ -1,84 +0,0 @@
|
||||
trigger:
|
||||
- master
|
||||
|
||||
pool:
|
||||
vmImage: 'ubuntu-latest'
|
||||
|
||||
variables:
|
||||
buildConfiguration: 'Release'
|
||||
|
||||
steps:
|
||||
- checkout: self
|
||||
submodules: true
|
||||
- task: DotNetCoreCLI@2
|
||||
inputs:
|
||||
command: 'publish'
|
||||
projects: 'Aaru/Aaru.csproj'
|
||||
publishWebProjects: false
|
||||
arguments: '-r alpine-x64 -o $(Build.ArtifactStagingDirectory)/out/alpine-amd64'
|
||||
zipAfterPublish: false
|
||||
displayName: "Building for Alpine Linux (amd64)"
|
||||
- task: DotNetCoreCLI@2
|
||||
inputs:
|
||||
command: 'publish'
|
||||
projects: 'Aaru/Aaru.csproj'
|
||||
publishWebProjects: false
|
||||
arguments: '-r linux-arm -o $(Build.ArtifactStagingDirectory)/out/linux-arm'
|
||||
zipAfterPublish: false
|
||||
displayName: "Building for Linux (armv7h)"
|
||||
- task: DotNetCoreCLI@2
|
||||
inputs:
|
||||
command: 'publish'
|
||||
projects: 'Aaru/Aaru.csproj'
|
||||
publishWebProjects: false
|
||||
arguments: '-r linux-arm64 -o $(Build.ArtifactStagingDirectory)/out/linux-aarch64'
|
||||
zipAfterPublish: false
|
||||
displayName: "Building for Linux (aarch64)"
|
||||
- task: DotNetCoreCLI@2
|
||||
inputs:
|
||||
command: 'publish'
|
||||
projects: 'Aaru/Aaru.csproj'
|
||||
publishWebProjects: false
|
||||
arguments: '-r linux-x64 -o $(Build.ArtifactStagingDirectory)/out/linux-amd64'
|
||||
zipAfterPublish: false
|
||||
displayName: "Building for Linux (amd64)"
|
||||
- task: DotNetCoreCLI@2
|
||||
inputs:
|
||||
command: 'publish'
|
||||
projects: 'Aaru/Aaru.csproj'
|
||||
publishWebProjects: false
|
||||
arguments: '-r linux-x86 -o $(Build.ArtifactStagingDirectory)/out/linux-x86'
|
||||
zipAfterPublish: false
|
||||
displayName: "Building for Linux (x86)"
|
||||
- task: DotNetCoreCLI@2
|
||||
inputs:
|
||||
command: 'publish'
|
||||
projects: 'Aaru/Aaru.csproj'
|
||||
publishWebProjects: false
|
||||
arguments: '-r osx-x64 -o $(Build.ArtifactStagingDirectory)/out/macos'
|
||||
zipAfterPublish: false
|
||||
displayName: "Building for macOS (amd64)"
|
||||
- task: DotNetCoreCLI@2
|
||||
inputs:
|
||||
command: 'publish'
|
||||
projects: 'Aaru/Aaru.csproj'
|
||||
publishWebProjects: false
|
||||
arguments: '-r win8-arm -o $(Build.ArtifactStagingDirectory)/out/windows-arm'
|
||||
zipAfterPublish: false
|
||||
displayName: "Building for Windows (armv7h)"
|
||||
- task: DotNetCoreCLI@2
|
||||
inputs:
|
||||
command: 'publish'
|
||||
projects: 'Aaru/Aaru.csproj'
|
||||
publishWebProjects: false
|
||||
arguments: '-r win-x64 -o $(Build.ArtifactStagingDirectory)/out/windows-x64'
|
||||
zipAfterPublish: false
|
||||
displayName: "Building for Windows (x64)"
|
||||
- task: DotNetCoreCLI@2
|
||||
inputs:
|
||||
command: 'publish'
|
||||
projects: 'Aaru/Aaru.csproj'
|
||||
publishWebProjects: false
|
||||
arguments: '-r win-x86 -o $(Build.ArtifactStagingDirectory)/out/windows-x86'
|
||||
zipAfterPublish: false
|
||||
displayName: "Building for Windows (x86)"
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "10.0.100-rc.1",
|
||||
"version": "10.0.100-rc.2",
|
||||
"rollForward": "latestFeature",
|
||||
"allowPrerelease": true
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user