]> Untitled Git - lemmy.git/commitdiff
Reorder woodpecker config to avoid ci failures (#3851)
authorNutomic <me@nutomic.com>
Tue, 8 Aug 2023 11:09:27 +0000 (13:09 +0200)
committerGitHub <noreply@github.com>
Tue, 8 Aug 2023 11:09:27 +0000 (13:09 +0200)
.woodpecker.yml

index a3c1f1194ab1b506de8acb9d022b420070a3c5b0..7fa461bc2fd8f51867490b382ed9b666d4240ed8 100644 (file)
@@ -42,30 +42,6 @@ pipeline:
     commands:
       - prettier -c . '!**/volumes' '!**/dist' '!target' '!**/translations'
 
-  restore-cache:
-    image: meltwater/drone-cache:v1
-    pull: true
-    settings:
-      restore: true
-      endpoint:
-        from_secret: MINIO_ENDPOINT
-      access-key:
-        from_secret: MINIO_WRITE_USER
-      secret-key:
-        from_secret: MINIO_WRITE_PASSWORD
-      bucket:
-        from_secret: MINIO_BUCKET
-      region: us-east-1
-      cache_key: "rust-cache"
-      path-style: true
-      mount:
-        - ".cargo"
-        - "target"
-        - "api_tests/node_modules"
-    secrets:
-      [MINIO_ENDPOINT, MINIO_WRITE_USER, MINIO_WRITE_PASSWORD, MINIO_BUCKET]
-    when: *slow_check_paths
-
   toml_fmt:
     image: tamasfe/taplo:0.8.1
     commands:
@@ -95,6 +71,30 @@ pipeline:
       - cd ..
       - ./scripts/./sql_format_check.sh
 
+  restore-cache:
+    image: meltwater/drone-cache:v1
+    pull: true
+    settings:
+      restore: true
+      endpoint:
+        from_secret: MINIO_ENDPOINT
+      access-key:
+        from_secret: MINIO_WRITE_USER
+      secret-key:
+        from_secret: MINIO_WRITE_PASSWORD
+      bucket:
+        from_secret: MINIO_BUCKET
+      region: us-east-1
+      cache_key: "rust-cache"
+      path-style: true
+      mount:
+        - ".cargo"
+        - "target"
+        - "api_tests/node_modules"
+    secrets:
+      [MINIO_ENDPOINT, MINIO_WRITE_USER, MINIO_WRITE_PASSWORD, MINIO_BUCKET]
+    when: *slow_check_paths
+
   # make sure api builds with default features (used by other crates relying on lemmy api)
   check_api_common_default_features:
     image: *muslrust_image