From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 968EC15800F for ; Fri, 6 Jan 2023 06:55:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A87DE07A5; Fri, 6 Jan 2023 06:55:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 59D2DE07A5 for ; Fri, 6 Jan 2023 06:55:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 08E44335D6D for ; Fri, 6 Jan 2023 06:55:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 16B8576D for ; Fri, 6 Jan 2023 06:55:13 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1672988104.654de6dd526dc660faadee393f9de7bfc049c23f.sam@gentoo> Subject: [gentoo-commits] proj/pax-utils:master commit in: .github/workflows/ X-VCS-Repository: proj/pax-utils X-VCS-Files: .github/workflows/build-test-ci.yml X-VCS-Directories: .github/workflows/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 654de6dd526dc660faadee393f9de7bfc049c23f X-VCS-Branch: master Date: Fri, 6 Jan 2023 06:55:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6ee65390-429b-4758-8d08-a24156dfcec6 X-Archives-Hash: 7efd74efeaaa7f6387a90172f4b15e5a commit: 654de6dd526dc660faadee393f9de7bfc049c23f Author: Sam James gentoo org> AuthorDate: Fri Jan 6 06:43:34 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jan 6 06:55:04 2023 +0000 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=654de6dd CI: Add ASAN, UBSAN to CI Signed-off-by: Sam James gentoo.org> .github/workflows/build-test-ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml index 52c0ee1..18c13f0 100644 --- a/.github/workflows/build-test-ci.yml +++ b/.github/workflows/build-test-ci.yml @@ -3,12 +3,7 @@ name: Build+Test CI -on: - push: - branches: [master, gh-actions] - tags: [v*] - pull_request: - types: [created, opened, edited] +on: [pull_request, push] jobs: make: @@ -17,11 +12,13 @@ jobs: os: [ubuntu-latest] cc: [gcc, clang] bb: [meson, muon] + sanitizer: [none, address, undefined] fail-fast: false runs-on: ${{ matrix.os }} env: CC: ${{ matrix.cc }} BB: ${{ matrix.bb }} + SANITIZER: ${{ matrix.sanitizer }} steps: - name: Install dependencies run: | @@ -53,6 +50,7 @@ jobs: -Dbuild_manpages=disabled \ -Dtests=true \ -Duse_fuzzing=true \ + -Db_sanitize="${SANITIZER}" \ build ninja -C build ( cd build && "$BB" test; )