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 BBB51158009 for ; Fri, 23 Jun 2023 17:25:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C479E08AB; Fri, 23 Jun 2023 17:25:05 +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 7BB86E08AB for ; Fri, 23 Jun 2023 17:25:05 +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 43382335C65 for ; Fri, 23 Jun 2023 17:25:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2270A96 for ; Fri, 23 Jun 2023 17:25:02 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1687535257.8fd0fb9f956c65dab850895102b21a7fef92b753.floppym@gentoo> Subject: [gentoo-commits] proj/sandbox:master commit in: .github/workflows/ X-VCS-Repository: proj/sandbox X-VCS-Files: .github/workflows/build-test-ci.yml X-VCS-Directories: .github/workflows/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 8fd0fb9f956c65dab850895102b21a7fef92b753 X-VCS-Branch: master Date: Fri, 23 Jun 2023 17:25:02 +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: b2f863cf-a4a2-4394-a081-2a0f213fa734 X-Archives-Hash: 1d83907b042922375062e85a9e96dbd0 commit: 8fd0fb9f956c65dab850895102b21a7fef92b753 Author: Mike Gilbert gentoo org> AuthorDate: Fri Jun 23 03:14:58 2023 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Fri Jun 23 15:47:37 2023 +0000 URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=8fd0fb9f CI: add musl config Signed-off-by: Mike Gilbert gentoo.org> .github/workflows/build-test-ci.yml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml index 7ad056b..4a3ef88 100644 --- a/.github/workflows/build-test-ci.yml +++ b/.github/workflows/build-test-ci.yml @@ -13,7 +13,7 @@ name: Build+Test CI on: [pull_request, push] jobs: - make: + glibc: strategy: matrix: os: [ubuntu-latest] @@ -56,3 +56,22 @@ jobs: make V=1 make V=1 check make V=1 distcheck + + musl: + runs-on: ubuntu-latest + container: + image: alpine:latest + options: --cap-add=SYS_PTRACE + steps: + - name: Install dependencies + run: apk add bash coreutils build-base automake autoconf autoconf-archive libtool pax-utils gawk sed + + - name: Checkout + uses: actions/checkout@v3 + + - name: Build + run: | + ./autogen.sh + ./configure || { cat config.log; false; } + make V=1 + make V=1 check || { cat tests/testsuite.log; false; }