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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 59418158042 for ; Tue, 12 Nov 2024 08:46:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7A68E07EC; Tue, 12 Nov 2024 08:46:33 +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 8B459E07EC for ; Tue, 12 Nov 2024 08:46:33 +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 952F3335D75 for ; Tue, 12 Nov 2024 08:46:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D96E118C4 for ; Tue, 12 Nov 2024 08:46:30 +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: <1731401171.c9aaa3e484e39debe599b82fdc8451833bb8f19e.sam@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: .github/workflows/ X-VCS-Repository: proj/crossdev X-VCS-Files: .github/workflows/crossdev.yml X-VCS-Directories: .github/workflows/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c9aaa3e484e39debe599b82fdc8451833bb8f19e X-VCS-Branch: master Date: Tue, 12 Nov 2024 08:46:30 +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: 7bcb72ae-333e-42ab-beca-39eccf5bf96d X-Archives-Hash: f592a6977bcaa4a515c933211b25499d commit: c9aaa3e484e39debe599b82fdc8451833bb8f19e Author: Michal Rostecki protonmail com> AuthorDate: Tue Nov 12 00:39:35 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 12 08:46:11 2024 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=c9aaa3e4 ci: Test crossdev in GitHub Actions Add a workflow which sets up and tests crossdev for the given list of targets. Signed-off-by: Michal Rostecki protonmail.com> Closes: https://github.com/gentoo/crossdev/pull/25 Signed-off-by: Sam James gentoo.org> .github/workflows/crossdev.yml | 47 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/.github/workflows/crossdev.yml b/.github/workflows/crossdev.yml new file mode 100644 index 0000000..5af15bb --- /dev/null +++ b/.github/workflows/crossdev.yml @@ -0,0 +1,47 @@ +name: CI + +on: + push: + branches: + - master + pull_request: + branches: + - master + schedule: + - cron: 00 4 * * * + +jobs: + crossdev: + strategy: + matrix: + target: + - aarch64-unknown-linux-gnu + - aarch64-unknown-linux-musl + stage3: + - latest # `openrc` (glibc+GCC) is tagged as `latest` + - musl + name: crossdev target=${{ matrix.target }} stage3=${{ matrix.stage3 }} + runs-on: ubuntu-latest + container: docker.io/gentoo/stage3:${{ matrix.stage3 }} + steps: + - uses: actions/checkout@v4 + + - name: Install dependencies + run: | + emerge --sync --quiet + emerge \ + app-eselect/eselect-repository \ + sys-apps/config-site + + - name: Install crossdev + run: make install + + - name: Create cross environment + run: | + eselect repository create crossdev + crossdev ${{ matrix.args }} --target ${{ matrix.target }} + + # zstd and its dependencies need both C and C++ toolchain. If any of them + # is broken, the installation will fail. + - name: Sanity check + run: ${{ matrix.target }}-emerge app-arch/zstd