Skip to content

Commit

Permalink
Avoid building internal for bitwarden crate
Browse files Browse the repository at this point in the history
  • Loading branch information
Hinton committed Oct 10, 2024
1 parent 2a76c27 commit 1285a45
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 260 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/build-rust-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,6 @@ jobs:
env:
RUSTFLAGS: "-D warnings"

- name: Build Internal
if: ${{ matrix.package == 'bitwarden' }}
run: cargo build -p ${{ matrix.package }} --features internal --release
env:
RUSTFLAGS: "-D warnings"

release-dry-run:
name: Release dry-run
runs-on: ubuntu-latest
Expand Down
139 changes: 0 additions & 139 deletions support/docs/docs.ts

This file was deleted.

12 changes: 0 additions & 12 deletions support/docs/rustdoc.ts

This file was deleted.

91 changes: 0 additions & 91 deletions support/docs/template.hbs

This file was deleted.

12 changes: 0 additions & 12 deletions support/scripts/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,6 @@ import {
} from "quicktype-core";

import fs from "fs";
import path from "path";

async function* walk(dir: string): AsyncIterable<string> {
for await (const d of await fs.promises.opendir(dir)) {
const entry = path.join(dir, d.name);
if (d.isDirectory()) {
yield* walk(entry);
} else if (d.isFile()) {
yield entry;
}
}
}

async function main() {
const schemaInput = new JSONSchemaInput(new FetchingJSONSchemaStore());
Expand Down

0 comments on commit 1285a45

Please sign in to comment.