public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mike Gilbert" <floppym@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sandbox:master commit in: .github/workflows/
Date: Fri, 23 Jun 2023 17:25:02 +0000 (UTC)	[thread overview]
Message-ID: <1687535257.e2f8b0382aef54fd0827c61f05589b82ddfa8331.floppym@gentoo> (raw)

commit:     e2f8b0382aef54fd0827c61f05589b82ddfa8331
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 23 15:35:43 2023 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri Jun 23 15:47:37 2023 +0000
URL:        https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=e2f8b038

CI: clean up glibc job

Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 .github/workflows/build-test-ci.yml | 32 +++-----------------------------
 1 file changed, 3 insertions(+), 29 deletions(-)

diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml
index 4a3ef88..5c95baa 100644
--- a/.github/workflows/build-test-ci.yml
+++ b/.github/workflows/build-test-ci.yml
@@ -3,58 +3,32 @@
 
 name: Build+Test CI
 
-#on:
-#  push:
-#    branches: [master, gh-actions]
-#    tags: [v*]
-#  pull_request:
-#    types: [created, opened, edited, push]
-
 on: [pull_request, push]
 
 jobs:
   glibc:
     strategy:
       matrix:
-        os: [ubuntu-latest]
         cc: [gcc, clang]
-        sanitize: [none] # [none, asan, ubsan]
       fail-fast: false
-    runs-on: ${{ matrix.os }}
+    runs-on: ubuntu-latest
     env:
       CC: ${{ matrix.cc }}
-      SANITIZER: ${{ matrix.sanitize }}
-      UBSAN_OPTIONS: "print_stacktrace=1:halt_on_error=1"
     steps:
     - name: Install dependencies
       run: |
         sudo apt-get update -qq
         sudo apt-get install build-essential gcc clang automake autoconf autoconf-archive libtool pax-utils -qy
 
-        case "$SANITIZER" in
-          none)
-             ;;
-          asan)
-             echo CFLAGS="-O2 -ggdb3 -fsanitize=address" >> $GITHUB_ENV
-             echo CXXFLAGS="-O2 -ggdb3 -fsanitize=address" >> $GITHUB_ENV
-             echo LDFLAGS="-fsanitize=address" >> $GITHUB_ENV
-             ;;
-          ubsan)
-             echo CFLAGS="-O2 -ggdb3 -fsanitize=undefined" >> $GITHUB_ENV
-             echo CXXFLAGS="-O2 -ggdb3 -fsanitize=undefined" >> $GITHUB_ENV
-             echo LDFLAGS="-fsanitize=undefined" >> $GITHUB_ENV
-             ;;
-        esac
-
     - uses: actions/checkout@v3
       name: Checkout
 
     - name: Build
       run: |
         ./autogen.sh
-        ./configure || cat config.log
+        ./configure || { cat config.log; false; }
         make V=1
-        make V=1 check
+        make V=1 check || { cat tests/testsuite.log; false; }
         make V=1 distcheck
 
   musl:


             reply	other threads:[~2023-06-23 17:25 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-23 17:25 Mike Gilbert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-06-23 17:25 [gentoo-commits] proj/sandbox:master commit in: .github/workflows/ Mike Gilbert
2023-01-06  7:14 Sam James

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1687535257.e2f8b0382aef54fd0827c61f05589b82ddfa8331.floppym@gentoo \
    --to=floppym@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox