mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 16:32:36 +01:00
ci: improve cleanup and add nuget cache
add pre-commit to git ignore
This commit is contained in:
parent
7d8444c435
commit
5d98ad12bb
2 changed files with 40 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -174,3 +174,4 @@ node_modules.nosync
|
||||||
|
|
||||||
# Ignore Jetbrains IntelliJ Workspace Directories
|
# Ignore Jetbrains IntelliJ Workspace Directories
|
||||||
.idea/
|
.idea/
|
||||||
|
.pre-commit-config
|
||||||
|
|
|
||||||
|
|
@ -88,6 +88,8 @@ stages:
|
||||||
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: $(imageName)
|
vmImage: $(imageName)
|
||||||
|
workspace:
|
||||||
|
clean: all
|
||||||
variables:
|
variables:
|
||||||
# Disable stylecop here - linting errors get caught by the analyze task
|
# Disable stylecop here - linting errors get caught by the analyze task
|
||||||
EnableAnalyzers: $(enableAnalysis)
|
EnableAnalyzers: $(enableAnalysis)
|
||||||
|
|
@ -95,6 +97,15 @@ stages:
|
||||||
- checkout: self
|
- checkout: self
|
||||||
submodules: true
|
submodules: true
|
||||||
fetchDepth: 1
|
fetchDepth: 1
|
||||||
|
- task: Cache@2
|
||||||
|
inputs:
|
||||||
|
key: 'nuget | "$(osName)" | global.json'
|
||||||
|
restoreKeys: |
|
||||||
|
nuget | "$(osName)"
|
||||||
|
nuget
|
||||||
|
path: $(nugetCacheFolder)
|
||||||
|
displayName: Cache NuGet packages
|
||||||
|
|
||||||
- task: UseDotNet@2
|
- task: UseDotNet@2
|
||||||
displayName: 'Install .net core'
|
displayName: 'Install .net core'
|
||||||
inputs:
|
inputs:
|
||||||
|
|
@ -112,11 +123,13 @@ stages:
|
||||||
- bash: ./build.sh --backend --enable-extra-platforms
|
- bash: ./build.sh --backend --enable-extra-platforms
|
||||||
displayName: Build Radarr Backend
|
displayName: Build Radarr Backend
|
||||||
- bash: |
|
- bash: |
|
||||||
find ${OUTPUTFOLDER} -type f ! -path "*/publish/*" -exec rm -rf {} \;
|
find ${OUTPUTFOLDER} -type f ! -path "*/publish/*" -delete 2>/dev/null || true
|
||||||
find ${OUTPUTFOLDER} -depth -empty -type d -exec rm -r "{}" \;
|
find ${OUTPUTFOLDER} -depth -empty -type d -delete 2>/dev/null || true
|
||||||
find ${TESTSFOLDER} -type f ! -path "*/publish/*" -exec rm -rf {} \;
|
find ${TESTSFOLDER} -type f ! -path "*/publish/*" -delete 2>/dev/null || true
|
||||||
find ${TESTSFOLDER} -depth -empty -type d -exec rm -r "{}" \;
|
find ${TESTSFOLDER} -depth -empty -type d -delete 2>/dev/null || true
|
||||||
displayName: Clean up intermediate output
|
rm -rf _temp/obj _temp/bin 2>/dev/null || true
|
||||||
|
dotnet nuget locals temp --clear 2>/dev/null || true
|
||||||
|
displayName: Clean up build artifacts
|
||||||
condition: and(succeeded(), ne(variables['osName'], 'Windows'))
|
condition: and(succeeded(), ne(variables['osName'], 'Windows'))
|
||||||
- publish: $(outputFolder)
|
- publish: $(outputFolder)
|
||||||
artifact: '$(osName)Backend'
|
artifact: '$(osName)Backend'
|
||||||
|
|
@ -161,6 +174,8 @@ stages:
|
||||||
imageName: ${{ variables.windowsImage }}
|
imageName: ${{ variables.windowsImage }}
|
||||||
pool:
|
pool:
|
||||||
vmImage: $(imageName)
|
vmImage: $(imageName)
|
||||||
|
workspace:
|
||||||
|
clean: all
|
||||||
steps:
|
steps:
|
||||||
- task: UseNode@1
|
- task: UseNode@1
|
||||||
displayName: Set Node.js version
|
displayName: Set Node.js version
|
||||||
|
|
@ -181,6 +196,13 @@ stages:
|
||||||
env:
|
env:
|
||||||
FORCE_COLOR: 0
|
FORCE_COLOR: 0
|
||||||
YARN_CACHE_FOLDER: $(yarnCacheFolder)
|
YARN_CACHE_FOLDER: $(yarnCacheFolder)
|
||||||
|
- bash: |
|
||||||
|
if [ "$(osName)" != "Windows" ]; then
|
||||||
|
rm -rf node_modules 2>/dev/null || true
|
||||||
|
fi
|
||||||
|
rm -rf _temp 2>/dev/null || true
|
||||||
|
displayName: Clean up frontend build artifacts
|
||||||
|
condition: and(succeeded(), ne(variables['osName'], 'Windows'))
|
||||||
- publish: $(outputFolder)
|
- publish: $(outputFolder)
|
||||||
artifact: '$(osName)Frontend'
|
artifact: '$(osName)Frontend'
|
||||||
displayName: Publish Frontend
|
displayName: Publish Frontend
|
||||||
|
|
@ -250,6 +272,11 @@ stages:
|
||||||
find . -name "Radarr" -exec chmod a+x {} \;
|
find . -name "Radarr" -exec chmod a+x {} \;
|
||||||
find . -name "Radarr.Update" -exec chmod a+x {} \;
|
find . -name "Radarr.Update" -exec chmod a+x {} \;
|
||||||
displayName: Set executable bits
|
displayName: Set executable bits
|
||||||
|
- bash: |
|
||||||
|
rm -rf _artifacts _output _temp 2>/dev/null || true
|
||||||
|
dotnet nuget locals temp --clear 2>/dev/null || true
|
||||||
|
displayName: Clean up source artifacts
|
||||||
|
condition: succeeded()
|
||||||
- task: ArchiveFiles@2
|
- task: ArchiveFiles@2
|
||||||
displayName: Create win-x64 zip
|
displayName: Create win-x64 zip
|
||||||
inputs:
|
inputs:
|
||||||
|
|
@ -470,6 +497,13 @@ stages:
|
||||||
testRunTitle: '$(testName) Unit Tests'
|
testRunTitle: '$(testName) Unit Tests'
|
||||||
failTaskOnFailedTests: true
|
failTaskOnFailedTests: true
|
||||||
failTaskOnMissingResultsFile: ne(variables['testName'], 'freebsd-x64')
|
failTaskOnMissingResultsFile: ne(variables['testName'], 'freebsd-x64')
|
||||||
|
- bash: |
|
||||||
|
if [ "$(osName)" != "Windows" ]; then
|
||||||
|
rm -rf ${TESTSFOLDER} 2>/dev/null || true
|
||||||
|
dotnet nuget locals temp --clear 2>/dev/null || true
|
||||||
|
fi
|
||||||
|
displayName: Clean up test artifacts
|
||||||
|
condition: always()
|
||||||
|
|
||||||
- job: Unit_Docker
|
- job: Unit_Docker
|
||||||
displayName: Unit Docker
|
displayName: Unit Docker
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue