]> Untitled Git - lemmy.git/blobdiff - .drone.yml
Move @context out of object/activity definitions
[lemmy.git] / .drone.yml
index 7d75fcbd587ede565ddeb1c9500f9670a108baf3..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:
@@ -45,7 +51,7 @@ steps:
       - mv target/x86_64-unknown-linux-musl/debug/lemmy_server target/lemmy_server
 
   - name: run federation tests
-    image: node:15-alpine3.12
+    image: node:alpine
     environment:
       LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432
       DO_WRITE_HOSTS_FILE: 1
@@ -122,11 +128,15 @@ steps:
 
   # using https://github.com/pksunkara/cargo-workspaces
   - name: publish to crates.io
-    image: rust:1.51-slim-buster
+    image: rustlang/rust:nightly
+    environment:
+      CARGO_TOKEN:
+        from_secret: cargo_api_token
     commands:
       - cargo install cargo-workspaces
-      - cp -r migrations crates/db_queries/
-      - cargo workspaces publish --no-git-commit --allow-branch main --yes custom "${DRONE_TAG}"
+      - 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:
       ref:
         - refs/tags/*
@@ -149,7 +159,9 @@ platform:
 steps:
 
   - name: prepare repo
-    image: rust:1.51-slim-buster
+    # 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
@@ -158,7 +170,7 @@ steps:
       - git fetch --tags
 
   - name: cargo test
-    image: rust:1.51-slim-buster
+    image: rust:1.51-slim
     environment:
       LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
       LEMMY_CONFIG_LOCATION: ../../config/config.hjson
@@ -172,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.51-slim-buster
+    image: rust:1.51-slim
     commands:
       - apt-get update
       - apt-get -y install --no-install-recommends libssl-dev pkg-config libpq-dev
@@ -180,7 +192,7 @@ steps:
       - mv target/debug/lemmy_server target/lemmy_server
 
   - name: run federation tests
-    image: node:15-buster-slim
+    image: node:16-slim
     environment:
       LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432
       DO_WRITE_HOSTS_FILE: 1