-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix typos in CI yaml - Due to actions-rs/cargo#86 the cargo actions cannot be configured to run in the `compiler/` dir, so it's easier to just move the compiler into the root of the repo.
- Loading branch information
1 parent
55609db
commit d00b290
Showing
15 changed files
with
83 additions
and
85 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'compiler/**.rs' | ||
- compiler/.github/workflows/cargo-deny.yml | ||
- compiler/Cargo.lock | ||
- compiler/Cargo.toml | ||
- compiler/rust-toolchain.toml | ||
pull_request: | ||
paths: | ||
- 'compiler/**.rs' | ||
- compiler/.github/workflows/cargo-deny.yml | ||
- compiler/Cargo.lock | ||
- compiler/Cargo.toml | ||
- compiler/rust-toolchain.toml | ||
workflow_dispatch: | ||
permissions: read-all | ||
name: cargo deny | ||
jobs: | ||
compiler-cargodeny: | ||
name: cargo deny | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: EmbarkStudios/cargo-deny-action@v1 | ||
with: | ||
log-level: warn | ||
command: check bans licenses sources | ||
arguments: --all-features |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[workspace] | ||
|
||
members = [ | ||
"cli", | ||
"compiler", | ||
] | ||
|
||
[workspace.package] | ||
authors = ["Adam Chalmers <adam.chalmers@kittycad.io>"] | ||
description = "Tooling for KCL (KittyCAD Language)" | ||
documentation = "docs.rs/kittycad-lang" | ||
readme = "README.md" | ||
publish = false | ||
repository = "https://github.com/KittyCAD/kcl" | ||
license = "MIT" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[workspace] | ||
[package] | ||
name = "compiler" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors.workspace = true | ||
description.workspace = true | ||
documentation.workspace = true | ||
publish.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
|
||
members = [ | ||
"cli", | ||
"compiler", | ||
] | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[workspace.package] | ||
authors = ["Adam Chalmers <adam.chalmers@kittycad.io>"] | ||
description = "Tooling for KCL (KittyCAD Language)" | ||
documentation = "docs.rs/kittycad-lang" | ||
readme = "README.md" | ||
publish = false | ||
repository = "https://github.com/KittyCAD/kcl" | ||
license = "MIT" | ||
[dependencies] | ||
nom = "7.1.3" |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.