Skip to content

Commit

Permalink
Check license generation for every PR to avoid license-less crate add…
Browse files Browse the repository at this point in the history
…itions (zed-industries#10033)

Also fix `anthropic` crate and make it AGPL-licensed, as it's used in
the AGPL-licensed collab part only.

Release Notes:

- N/A
  • Loading branch information
SomeoneToIgnore authored Apr 1, 2024
1 parent bd7fdcf commit 5602593
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ jobs:
- name: Check unused dependencies
uses: bnjbvr/cargo-machete@main

- name: Check license generation
run: script/generate-licenses /tmp/zed_licenses_output

- name: Ensure fresh merge
shell: bash -euxo pipefail {0}
run: |
Expand Down
4 changes: 2 additions & 2 deletions crates/anthropic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name = "anthropic"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
publish = false
license = "AGPL-3.0-or-later"

[lib]
path = "src/anthropic.rs"
Expand Down
1 change: 1 addition & 0 deletions crates/anthropic/LICENSE-AGPL
2 changes: 1 addition & 1 deletion script/generate-licenses
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -euo pipefail

OUTPUT_FILE=$(pwd)/assets/licenses.md
OUTPUT_FILE="${1:-$(pwd)/assets/licenses.md}"

> $OUTPUT_FILE

Expand Down

0 comments on commit 5602593

Please sign in to comment.