]> Untitled Git - lemmy.git/blobdiff - .drone.yml
Move @context out of object/activity definitions
[lemmy.git] / .drone.yml
index 697c9e814b0531f5c73b394a85f69adff41e2a52..e96fee7cf6d3c172d939acec4032b03eaa617807 100644 (file)
@@ -38,6 +38,12 @@ steps:
       - sudo apt-get -y install --no-install-recommends postgresql-client
       - cargo test --workspace --no-fail-fast
 
+  - name: check defaults.hjson updated
+    image: ekidd/rust-musl-builder:1.51.0
+    commands:
+      - ./scripts/update_config_defaults.sh config/defaults_current.hjson
+      - diff config/defaults.hjson config/defaults_current.hjson
+
   - name: cargo build
     image: ekidd/rust-musl-builder:1.51.0
     commands:
@@ -122,13 +128,13 @@ steps:
 
   # using https://github.com/pksunkara/cargo-workspaces
   - name: publish to crates.io
-    image: rust:1
+    image: rustlang/rust:nightly
     environment:
       CARGO_TOKEN:
         from_secret: cargo_api_token
     commands:
       - cargo install cargo-workspaces
-      - cp -r migrations crates/db_queries/
+      - cp -r migrations crates/db_schema/
       - cargo login "$CARGO_TOKEN"
       - cargo workspaces publish --from-git --allow-dirty --allow-branch "${DRONE_TAG}" --yes custom "${DRONE_TAG}"
     when:
@@ -153,7 +159,9 @@ platform:
 steps:
 
   - name: prepare repo
-    image: rust:1-slim
+    # Not sure why, but rust ARM64 builds are failing on drone for rust:1.54 and later:
+    # https://discourse.drone.io/t/arm-build-stalls-out-on-cloud-drone-io-ram-issue/9701
+    image: rust:1.51-slim
     user: root
     commands:
       - chown 1000:1000 . -R
@@ -162,7 +170,7 @@ steps:
       - git fetch --tags
 
   - name: cargo test
-    image: rust:1-slim
+    image: rust:1.51-slim
     environment:
       LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
       LEMMY_CONFIG_LOCATION: ../../config/config.hjson
@@ -176,7 +184,7 @@ steps:
 
   # Using Debian here because there seems to be no official Alpine-based Rust docker image for ARM.
   - name: cargo build
-    image: rust:1-slim
+    image: rust:1.51-slim
     commands:
       - apt-get update
       - apt-get -y install --no-install-recommends libssl-dev pkg-config libpq-dev