forked from irungentoo/toxcore
-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add a source tarball deploy workflow.
This builds the autotools files (configure, etc.) so people can build the code without needing to install autotools.
- Loading branch information
Showing
7 changed files
with
754 additions
and
736 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 |
---|---|---|
@@ -1,36 +1,36 @@ | ||
# Derived from: https://google.github.io/clusterfuzzlite/running-clusterfuzzlite/github-actions/ | ||
# # Derived from: https://google.github.io/clusterfuzzlite/running-clusterfuzzlite/github-actions/ | ||
|
||
name: ClusterFuzzLite pull request fuzzing | ||
# name: ClusterFuzzLite pull request fuzzing | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize] | ||
# on: | ||
# pull_request: | ||
# types: [opened, synchronize] | ||
|
||
jobs: | ||
Fuzzing: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
sanitizer: | ||
- address | ||
- undefined | ||
- memory | ||
steps: | ||
- name: Build Fuzzers (${{ matrix.sanitizer }}) | ||
id: build | ||
uses: google/clusterfuzzlite/actions/build_fuzzers@v1 | ||
with: | ||
sanitizer: ${{ matrix.sanitizer }} | ||
- name: Run Fuzzers (${{ matrix.sanitizer }}) | ||
id: run | ||
uses: google/clusterfuzzlite/actions/run_fuzzers@v1 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
fuzz-seconds: 300 # 5 mins (total time, not per test) | ||
mode: 'code-change' | ||
sanitizer: ${{ matrix.sanitizer }} | ||
# Optional but recommended: For storing certain artifacts from fuzzing. | ||
# See later section on "Git repo for storage". | ||
storage-repo: https://github.com/TokTok/toktok-fuzzer.git | ||
storage-repo-branch: master # Optional. Defaults to "main" | ||
# jobs: | ||
# Fuzzing: | ||
# runs-on: ubuntu-latest | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# sanitizer: | ||
# - address | ||
# - undefined | ||
# - memory | ||
# steps: | ||
# - name: Build Fuzzers (${{ matrix.sanitizer }}) | ||
# id: build | ||
# uses: google/clusterfuzzlite/actions/build_fuzzers@v1 | ||
# with: | ||
# sanitizer: ${{ matrix.sanitizer }} | ||
# - name: Run Fuzzers (${{ matrix.sanitizer }}) | ||
# id: run | ||
# uses: google/clusterfuzzlite/actions/run_fuzzers@v1 | ||
# with: | ||
# github-token: ${{ secrets.GITHUB_TOKEN }} | ||
# fuzz-seconds: 300 # 5 mins (total time, not per test) | ||
# mode: 'code-change' | ||
# sanitizer: ${{ matrix.sanitizer }} | ||
# # Optional but recommended: For storing certain artifacts from fuzzing. | ||
# # See later section on "Git repo for storage". | ||
# storage-repo: https://github.com/TokTok/toktok-fuzzer.git | ||
# storage-repo-branch: master # Optional. Defaults to "main" |
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,12 +1,12 @@ | ||
name: checks | ||
# name: checks | ||
|
||
on: | ||
pull_request: | ||
branches: [master] | ||
types: [opened, reopened, synchronize, milestoned] | ||
pull_request_target: | ||
branches: [master] | ||
# on: | ||
# pull_request: | ||
# branches: [master] | ||
# types: [opened, reopened, synchronize, milestoned] | ||
# pull_request_target: | ||
# branches: [master] | ||
|
||
jobs: | ||
checks: | ||
uses: TokTok/ci-tools/.github/workflows/check-release.yml@master | ||
# jobs: | ||
# checks: | ||
# uses: TokTok/ci-tools/.github/workflows/check-release.yml@master |
Oops, something went wrong.