-
Notifications
You must be signed in to change notification settings - Fork 0
Chart later numeric report rows #47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
7cf8a6b
Chart later numeric report rows
seonghobae aac355f
fix: satisfy coverage and scorecard gates
seonghobae 01e5e34
Merge remote-tracking branch 'origin/main' into HEAD
seonghobae 5779b88
fix: run fuzz builder as non-root
seonghobae ee54b9d
fix: allow non-root fuzz builds
seonghobae 4bcea16
fix: align fuzz user with runner workspace
seonghobae 20101a0
fix: prepare fuzz output path for non-root user
seonghobae ed99c5e
fix: prepare cflite output directory
seonghobae b602999
fix: allow rust sanitizer setup for fuzz user
seonghobae 748b964
fix: expose cflite build script
seonghobae e31f510
fix: keep cflite diagnostics path-safe
seonghobae File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,4 @@ | ||
| FROM gcr.io/oss-fuzz-base/base-builder-rust@sha256:a960440a8543df2411ca489eff995366ce8041b086141cc5092664d793f20e9e | ||
|
|
||
| COPY . $SRC/fast-mlsirm | ||
| WORKDIR $SRC/fast-mlsirm | ||
This file contains hidden or 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,5 @@ | ||
| #!/bin/bash -eux | ||
|
|
||
| cd "$SRC/fast-mlsirm" | ||
| cargo fuzz build -O neg_loglik | ||
| cp fuzz/target/x86_64-unknown-linux-gnu/release/neg_loglik "$OUT/" |
This file contains hidden or 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 @@ | ||
| language: rust |
This file contains hidden or 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,18 @@ | ||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: github-actions | ||
| directory: / | ||
| schedule: | ||
| interval: weekly | ||
| - package-ecosystem: pip | ||
| directory: / | ||
| schedule: | ||
| interval: weekly | ||
| - package-ecosystem: cargo | ||
| directory: / | ||
| schedule: | ||
| interval: weekly | ||
| - package-ecosystem: cargo | ||
| directory: /fuzz | ||
| schedule: | ||
| interval: weekly |
This file contains hidden or 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,44 @@ | ||
| name: ClusterFuzzLite PR fuzzing | ||
|
|
||
| on: | ||
| pull_request: | ||
| paths: | ||
| - ".clusterfuzzlite/**" | ||
| - ".github/workflows/cflite_pr.yml" | ||
| - "Cargo.toml" | ||
| - "crates/**" | ||
| - "fuzz/**" | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| PR: | ||
| runs-on: ubuntu-24.04 | ||
| permissions: | ||
| contents: read | ||
| security-events: write | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ matrix.sanitizer }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| sanitizer: [address] | ||
| steps: | ||
| - name: Build fuzzers (${{ matrix.sanitizer }}) | ||
| id: build | ||
| uses: google/clusterfuzzlite/actions/build_fuzzers@82652fb49e77bc29c35da1167bb286e93c6bcc05 | ||
| with: | ||
| language: rust | ||
| github-token: ${{ secrets.GITHUB_TOKEN }} | ||
| sanitizer: ${{ matrix.sanitizer }} | ||
| - name: Run fuzzers (${{ matrix.sanitizer }}) | ||
| id: run | ||
| uses: google/clusterfuzzlite/actions/run_fuzzers@82652fb49e77bc29c35da1167bb286e93c6bcc05 | ||
| with: | ||
| github-token: ${{ secrets.GITHUB_TOKEN }} | ||
| fuzz-seconds: 120 | ||
| mode: code-change | ||
| output-sarif: true | ||
| sanitizer: ${{ matrix.sanitizer }} |
This file contains hidden or 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 hidden or 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,26 @@ | ||
| name: CodeQL | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main, develop] | ||
| pull_request: | ||
| schedule: | ||
| - cron: "24 3 * * 2" | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| analyze: | ||
| name: Analyze Python | ||
| runs-on: ubuntu-24.04 | ||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| security-events: write | ||
| steps: | ||
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 | ||
| - uses: github/codeql-action/init@641a925cfafe92d0fdf8b239ba4053e3f8d99d6d | ||
| with: | ||
| languages: python | ||
| - uses: github/codeql-action/analyze@641a925cfafe92d0fdf8b239ba4053e3f8d99d6d |
This file contains hidden or 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,21 @@ | ||
| # Security Policy | ||
|
|
||
| ## Supported Versions | ||
|
|
||
| Security fixes are prepared for the default branch and the latest released | ||
| source package when one exists. | ||
|
|
||
| ## Reporting a Vulnerability | ||
|
|
||
| Please report suspected vulnerabilities through GitHub private vulnerability | ||
| reporting: | ||
|
|
||
| https://github.com/ContextualWisdomLab/fast-mlsirm/security/advisories/new | ||
|
|
||
| Do not open a public issue for a vulnerability report. Include the affected | ||
| version or commit, reproduction steps, expected impact, and any known safe | ||
| workaround. | ||
|
|
||
| We aim to acknowledge vulnerability reports within 7 days. After validation, we | ||
| will coordinate a disclosure timeline and target a fix or mitigation plan within | ||
| 90 days, depending on severity and affected users. |
This file contains hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.