-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -18,8 +18,8 @@ ENV PATH="${PATH}:${HOME}/openfga" | |
RUN timeout 0.1 openfga run --playground-enabled=false --log-level=warn || true | ||
|
||
## Clone cedar and cedar-spec | ||
RUN git clone https://github.com/cedar-policy/cedar-spec -b main | ||
RUN git clone https://github.com/cedar-policy/cedar cedar-spec/cedar -b main | ||
RUN git clone https://github.com/cedar-policy/cedar-spec /cedar-spec -b main | ||
RUN git clone https://github.com/cedar-policy/cedar /cedar-spec/cedar -b main | ||
|
||
## Install Cedar CLI so it is usable from command line | ||
RUN cargo install [email protected] --path cedar-spec/cedar/cedar-policy-cli | ||
|
@@ -39,6 +39,7 @@ COPY Cargo.toml plot.py README.md cedar-benchmarks/ | |
COPY generators cedar-benchmarks/generators/ | ||
COPY benches cedar-benchmarks/benches/ | ||
COPY src cedar-benchmarks/src/ | ||
COPY /cedar-spec cedar-benchmarks/cedar-spec/ | ||
COPY rego-harness cedar-benchmarks/rego-harness/ | ||
COPY validate_all_benchmarks.sh cedar-benchmarks | ||
|
||
|