Skip to content

Commit 6166bc5

Browse files
authored
typst: update build script and add contact (#14164)
I've recently updated the fuzz test suite (typst/typst#7155). This changed the directory in which the fuzz targets are stored. Since typst has been migrated to the `2024` edition, I thought I also might try removing the manifest patch script. I've also added myself to the `auto_ccs` list. I work at Typst, do you need some other form of verification for that?
1 parent e706fa7 commit 6166bc5

File tree

4 files changed

+2
-24
lines changed

4 files changed

+2
-24
lines changed

projects/typst/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,3 @@ RUN rustup toolchain install nightly
2020
RUN git clone --depth 1 https://github.com/typst/typst.git typst
2121
WORKDIR typst
2222
COPY build.sh $SRC/
23-
COPY patch_cargo_toml.sh $SRC/
24-
RUN chmod +x $SRC/patch_cargo_toml.sh && $SRC/patch_cargo_toml.sh

projects/typst/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ cd tests/fuzz
2020
cargo +nightly fuzz build -O --debug-assertions
2121

2222
FUZZ_TARGET_OUTPUT_DIR=$SRC/typst/target/x86_64-unknown-linux-gnu/release
23-
for f in src/*.rs
23+
for f in src/bin/*.rs
2424
do
2525
FUZZ_TARGET_NAME=$(basename ${f%.*})
2626
cp $FUZZ_TARGET_OUTPUT_DIR/$FUZZ_TARGET_NAME $OUT/

projects/typst/patch_cargo_toml.sh

Lines changed: 0 additions & 21 deletions
This file was deleted.

projects/typst/project.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ primary_contact: "[email protected]"
44
main_repo: "https://github.com/typst/typst.git"
55
auto_ccs:
66
7+
78
sanitizers:
89
- address
910
fuzzing_engines:

0 commit comments

Comments
 (0)