浏览代码

fix liniting errors

crobibero 4 年之前
父节点
当前提交
86e06369a9
共有 2 个文件被更改,包括 27 次插入27 次删除
  1. 26 26
      .ci/azure-pipelines-api-client.yml
  2. 1 1
      .ci/azure-pipelines.yml

+ 26 - 26
.ci/azure-pipelines-api-client.yml

@@ -9,6 +9,7 @@
 jobs:
 jobs:
 - job: GenerateApiClients
 - job: GenerateApiClients
   displayName: 'Generate Api Clients'
   displayName: 'Generate Api Clients'
+  dependsOn: Test
 
 
   pool:
   pool:
     vmImage: "${{ parameters.LinuxImage }}"
     vmImage: "${{ parameters.LinuxImage }}"
@@ -21,42 +22,41 @@ jobs:
         artifact: "OpenAPI Spec"
         artifact: "OpenAPI Spec"
         path: "$(System.ArtifactsDirectory)/openapispec"
         path: "$(System.ArtifactsDirectory)/openapispec"
         runVersion: "latest"
         runVersion: "latest"
-        dependsOn: Test
 
 
     - task: CmdLine@2
     - task: CmdLine@2
-    displayName: 'Download OpenApi Generator'
-    inputs:
-      scripts: "wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/${{ parameters.GeneratorVersion }}/openapi-generator-cli-${{ parameters.GeneratorVersion }}.jar -O openapi-generator-cli.jar"
+      displayName: 'Download OpenApi Generator'
+      inputs:
+        script: "wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/${{ parameters.GeneratorVersion }}/openapi-generator-cli-${{ parameters.GeneratorVersion }}.jar -O openapi-generator-cli.jar"
 
 
 # Generate npm api client
 # Generate npm api client
 # Unstable
 # Unstable
     - task: CmdLine@2
     - task: CmdLine@2
-    displayName: 'Build unstable typescript axios client'
-    condition: startsWith(variables['Build.SourceBranch'], 'refs/heads/master')
-    inputs:
-      script: 'bash ./apiclient/templates/typescript/axios/unstable.sh'
+      displayName: 'Build unstable typescript axios client'
+      condition: startsWith(variables['Build.SourceBranch'], 'refs/heads/master')
+      inputs:
+        script: 'bash ./apiclient/templates/typescript/axios/unstable.sh'
 
 
     - task: Npm@1
     - task: Npm@1
-    displayName: 'Publish unstable typescript axios client'
-    condition: startsWith(variables['Build.SourceBranch'], 'refs/heads/master')
-    inputs:
-      command: publish
-      publishRegistry: useFeed
-      publishFeed: unstable
-      workingDir: ./apiclient/generated/typescript/axios
+      displayName: 'Publish unstable typescript axios client'
+      condition: startsWith(variables['Build.SourceBranch'], 'refs/heads/master')
+      inputs:
+        command: publish
+        publishRegistry: useFeed
+        publishFeed: unstable
+        workingDir: ./apiclient/generated/typescript/axios
 
 
 # Stable
 # Stable
     - task: CmdLine@2
     - task: CmdLine@2
-    displayName: 'Build stable typescript axios client'
-    condition: startsWith(variables['Build.SourceBranch'], 'refs/tags/v')
-    inputs:
-      script: 'bash ./apiclient/templates/typescript/axios/stable.sh'
+      displayName: 'Build stable typescript axios client'
+      condition: startsWith(variables['Build.SourceBranch'], 'refs/tags/v')
+      inputs:
+        script: 'bash ./apiclient/templates/typescript/axios/stable.sh'
 
 
     - task: Npm@1
     - task: Npm@1
-    displayName: 'Publish stable typescript axios client'
-    condition: startsWith(variables['Build.SourceBranch'], 'refs/tags/v')
-    inputs:
-      command: publish
-      publishRegistry: useExternalRegistry
-      publishEndpoint: 'jellyfin-bot for NPM'
-      workingDir: ./apiclient/generated/typescript/axios
+      displayName: 'Publish stable typescript axios client'
+      condition: startsWith(variables['Build.SourceBranch'], 'refs/tags/v')
+      inputs:
+        command: publish
+        publishRegistry: useExternalRegistry
+        publishEndpoint: 'jellyfin-bot for NPM'
+        workingDir: ./apiclient/generated/typescript/axios

+ 1 - 1
.ci/azure-pipelines.yml

@@ -57,4 +57,4 @@ jobs:
   - template: azure-pipelines-package.yml
   - template: azure-pipelines-package.yml
 
 
 - ${{ if or(startsWith(variables['Build.SourceBranch'], 'refs/tags/v'), startsWith(variables['Build.SourceBranch'], 'refs/heads/master')) }}:
 - ${{ if or(startsWith(variables['Build.SourceBranch'], 'refs/tags/v'), startsWith(variables['Build.SourceBranch'], 'refs/heads/master')) }}:
-    - template: azure-pipelines-api-client.yml
+  - template: azure-pipelines-api-client.yml