-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 953-better-document-distributed-jobs
- Loading branch information
Showing
2 changed files
with
52 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Coverity | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
build_version: | ||
description: "Version of GPT-NeoX being submitted for scan" | ||
required: false | ||
default: "GPT-NeoX build version" | ||
build_description: | ||
description: "Description of the current build" | ||
required: false | ||
default: "Current build of GPT-NeoX" | ||
|
||
jobs: | ||
coverity: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
env: | ||
COV_USER: ${{ secrets.COV_USER }} | ||
COVERITY_PROJECT: ${{ secrets.COVERITY_PROJECT }} | ||
COVERITY_TOKEN: ${{ secrets.COVERITY_TOKEN }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install utils | ||
run: | | ||
apt update -y && apt upgrade -y | ||
apt install curl jq wget -y | ||
- name: Coverity Download | ||
run: | | ||
wget https://scan.coverity.com/download/linux64 --post-data "token=$COVERITY_TOKEN&project=EleutherAI%2Fgpt-neox" -O coverity_tool.tgz | ||
$GITHUB_WORKSPACE/bin/cov-configure --python | ||
$GITHUB_WORKSPACE/bin/cov-configure --gcc | ||
- name: Coverity Scan | ||
run: | | ||
set -x | ||
$GITHUB_WORKSPACE/bin/cov-build --dir cov-int --no-command --fs-capture-search $GITHUB_WORKSPACE | ||
- name: Coverity Upload | ||
run: | | ||
tar caf build-results.bz2 cov-int | ||
curl --form token=$COV_PASSPHRASE \ | ||
--form email=$COV_USER \ | ||
--form file=@GITHUB_WORKSPACE/build-results.bz2 \ | ||
--form version="Version" \ | ||
--form description="Build" \ | ||
https://scan.coverity.com/builds?project=EleutherAI%2Fgpt-neox |
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