From d8fa0ebd0b42bf8ce940446c51e2ef339176eb63 Mon Sep 17 00:00:00 2001 From: Joshua Sing Date: Thu, 12 Jan 2023 18:26:56 +1100 Subject: Revert COVERITY_SCAN_PROJECT_NAME change in Coverity workflow --- .github/workflows/coverity.yml | 2 +- .gitignore | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index f805c33..1bbb1fd 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.repository_owner == 'libressl' }} env: - COVERITY_SCAN_PROJECT_NAME: 'libressl/portable' + COVERITY_SCAN_PROJECT_NAME: 'libressl-portable/portable' COVERITY_SCAN_BRANCH_PATTERN: '*' COVERITY_SCAN_NOTIFICATION_EMAIL: 'libressl-security@openbsd.org' COVERITY_SCAN_BUILD_COMMAND_PREPEND: "./autogen.sh && ./configure && make dist && tar zxf libressl-*.tar.gz && rm libressl-*.tar.gz && cd libressl-* && mkdir build-static && mkdir build-shared && cmake -GNinja -DBUILD_SHARED_LIBS=ON .." diff --git a/.gitignore b/.gitignore index e00baab..dc82e69 100644 --- a/.gitignore +++ b/.gitignore @@ -212,3 +212,7 @@ openbsd/ *.tar.gz man/Makefile.am man/mandoc.db + +# JetBrains IDEs +.idea/ +*.iml \ No newline at end of file -- cgit v1.2.3-55-g6feb From 5fe2c171a5b194664b5521e486b9c310a34ac711 Mon Sep 17 00:00:00 2001 From: Joshua Sing Date: Thu, 12 Jan 2023 18:37:41 +1100 Subject: Add 'workflow_dispatch' event trigger to Coverity workflow --- .github/workflows/coverity.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 1bbb1fd..bc0ee0d 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -1,6 +1,7 @@ name: Coverity on: + workflow_dispatch: schedule: - cron: "0 0 * * *" -- cgit v1.2.3-55-g6feb From 01b26d3019c6dc0528194e915bc28e1cda12f884 Mon Sep 17 00:00:00 2001 From: Joshua Sing Date: Thu, 12 Jan 2023 19:16:39 +1100 Subject: Add a newline to the end of .gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index dc82e69..3a0b97f 100644 --- a/.gitignore +++ b/.gitignore @@ -215,4 +215,4 @@ man/mandoc.db # JetBrains IDEs .idea/ -*.iml \ No newline at end of file +*.iml -- cgit v1.2.3-55-g6feb