public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sandbox:master commit in: .github/workflows/
@ 2023-01-06  7:14 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2023-01-06  7:14 UTC (permalink / raw
  To: gentoo-commits

commit:     cb63ad4fb4b8a21b269f330f2512da0a6ce7399e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  6 06:58:34 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan  6 07:05:14 2023 +0000
URL:        https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=cb63ad4f

CI: add Github Actions

Signed-off-by: Sam James <sam <AT> gentoo.org>

 .github/workflows/build-test-ci.yml | 58 +++++++++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)

diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml
new file mode 100644
index 0000000..7ad056b
--- /dev/null
+++ b/.github/workflows/build-test-ci.yml
@@ -0,0 +1,58 @@
+# GitHub actions workflow.
+# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
+
+name: Build+Test CI
+
+#on:
+#  push:
+#    branches: [master, gh-actions]
+#    tags: [v*]
+#  pull_request:
+#    types: [created, opened, edited, push]
+
+on: [pull_request, push]
+
+jobs:
+  make:
+    strategy:
+      matrix:
+        os: [ubuntu-latest]
+        cc: [gcc, clang]
+        sanitize: [none] # [none, asan, ubsan]
+      fail-fast: false
+    runs-on: ${{ matrix.os }}
+    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
+        make V=1
+        make V=1 check
+        make V=1 distcheck


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/sandbox:master commit in: .github/workflows/
@ 2023-06-23 17:25 Mike Gilbert
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Gilbert @ 2023-06-23 17:25 UTC (permalink / raw
  To: gentoo-commits

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:


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/sandbox:master commit in: .github/workflows/
@ 2023-06-23 17:25 Mike Gilbert
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Gilbert @ 2023-06-23 17:25 UTC (permalink / raw
  To: gentoo-commits

commit:     8fd0fb9f956c65dab850895102b21a7fef92b753
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 23 03:14:58 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=8fd0fb9f

CI: add musl config

Signed-off-by: Mike Gilbert <floppym <AT> 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; }


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/sandbox:master commit in: .github/workflows/
@ 2024-12-22  5:29 Mike Gilbert
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Gilbert @ 2024-12-22  5:29 UTC (permalink / raw
  To: gentoo-commits

commit:     2d6203f9b7b527d2179569d7ebcf4371881ab2a8
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 22 04:35:15 2024 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Dec 22 05:22:12 2024 +0000
URL:        https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=2d6203f9

ci: add 32-bit musl build

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

 .github/workflows/build-test-ci.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml
index 70880d4..fff33c7 100644
--- a/.github/workflows/build-test-ci.yml
+++ b/.github/workflows/build-test-ci.yml
@@ -34,15 +34,18 @@ jobs:
 
   musl:
     runs-on: ubuntu-latest
+    strategy:
+      matrix:
+        platform: [linux/amd64, linux/386]
     container:
       image: alpine:latest
-      options: --cap-add=SYS_PTRACE
+      options: --cap-add=SYS_PTRACE --platform=${{ matrix.platform }}
     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
+        uses: taiki-e/checkout-action@v1
 
       - name: Build
         run: |


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/sandbox:master commit in: .github/workflows/
@ 2024-12-22  5:29 Mike Gilbert
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Gilbert @ 2024-12-22  5:29 UTC (permalink / raw
  To: gentoo-commits

commit:     e8a23b58cef7841421a95da860f880e1ffac5bb7
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 22 04:12:14 2024 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Dec 22 04:16:36 2024 +0000
URL:        https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=e8a23b58

ci: add 32-bit glibc build

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

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

diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml
index 5c95baa..70880d4 100644
--- a/.github/workflows/build-test-ci.yml
+++ b/.github/workflows/build-test-ci.yml
@@ -10,15 +10,16 @@ jobs:
     strategy:
       matrix:
         cc: [gcc, clang]
+        abi: [-m64, -m32]
       fail-fast: false
     runs-on: ubuntu-latest
     env:
-      CC: ${{ matrix.cc }}
+      CC: ${{ matrix.cc }} ${{ matrix.abi }}
     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
+        sudo apt-get install build-essential gcc gcc-multilib clang automake autoconf autoconf-archive libtool pax-utils -qy
 
     - uses: actions/checkout@v3
       name: Checkout


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/sandbox:master commit in: .github/workflows/
@ 2024-12-22  5:29 Mike Gilbert
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Gilbert @ 2024-12-22  5:29 UTC (permalink / raw
  To: gentoo-commits

commit:     b229196708f6b5b26dc1be42c57d8e60f664a5f4
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 22 05:25:15 2024 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Dec 22 05:25:15 2024 +0000
URL:        https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=b2291967

ci: use actions/checkout@v4

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

 .github/workflows/build-test-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml
index fff33c7..e89e32d 100644
--- a/.github/workflows/build-test-ci.yml
+++ b/.github/workflows/build-test-ci.yml
@@ -21,7 +21,7 @@ jobs:
         sudo apt-get update -qq
         sudo apt-get install build-essential gcc gcc-multilib clang automake autoconf autoconf-archive libtool pax-utils -qy
 
-    - uses: actions/checkout@v3
+    - uses: actions/checkout@v4
       name: Checkout
 
     - name: Build


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/sandbox:stable-2.x commit in: .github/workflows/
@ 2024-12-22 19:19 Mike Gilbert
  2025-01-14  4:38 ` [gentoo-commits] proj/sandbox:master " Mike Gilbert
  0 siblings, 1 reply; 10+ messages in thread
From: Mike Gilbert @ 2024-12-22 19:19 UTC (permalink / raw
  To: gentoo-commits

commit:     68d4c2dded16e2a7eb57cbce4d878ea02d7f0737
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 22 04:12:14 2024 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Dec 22 19:12:53 2024 +0000
URL:        https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=68d4c2dd

ci: add 32-bit glibc build

Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
(cherry picked from commit e8a23b58cef7841421a95da860f880e1ffac5bb7)

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

diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml
index 5c95baa..70880d4 100644
--- a/.github/workflows/build-test-ci.yml
+++ b/.github/workflows/build-test-ci.yml
@@ -10,15 +10,16 @@ jobs:
     strategy:
       matrix:
         cc: [gcc, clang]
+        abi: [-m64, -m32]
       fail-fast: false
     runs-on: ubuntu-latest
     env:
-      CC: ${{ matrix.cc }}
+      CC: ${{ matrix.cc }} ${{ matrix.abi }}
     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
+        sudo apt-get install build-essential gcc gcc-multilib clang automake autoconf autoconf-archive libtool pax-utils -qy
 
     - uses: actions/checkout@v3
       name: Checkout


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/sandbox:master commit in: .github/workflows/
  2024-12-22 19:19 [gentoo-commits] proj/sandbox:stable-2.x commit in: .github/workflows/ Mike Gilbert
@ 2025-01-14  4:38 ` Mike Gilbert
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Gilbert @ 2025-01-14  4:38 UTC (permalink / raw
  To: gentoo-commits

commit:     68d4c2dded16e2a7eb57cbce4d878ea02d7f0737
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 22 04:12:14 2024 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Dec 22 19:12:53 2024 +0000
URL:        https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=68d4c2dd

ci: add 32-bit glibc build

Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
(cherry picked from commit e8a23b58cef7841421a95da860f880e1ffac5bb7)

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

diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml
index 5c95baa..70880d4 100644
--- a/.github/workflows/build-test-ci.yml
+++ b/.github/workflows/build-test-ci.yml
@@ -10,15 +10,16 @@ jobs:
     strategy:
       matrix:
         cc: [gcc, clang]
+        abi: [-m64, -m32]
       fail-fast: false
     runs-on: ubuntu-latest
     env:
-      CC: ${{ matrix.cc }}
+      CC: ${{ matrix.cc }} ${{ matrix.abi }}
     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
+        sudo apt-get install build-essential gcc gcc-multilib clang automake autoconf autoconf-archive libtool pax-utils -qy
 
     - uses: actions/checkout@v3
       name: Checkout


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/sandbox:master commit in: .github/workflows/
  2024-12-22 19:19 [gentoo-commits] proj/sandbox:stable-2.x " Mike Gilbert
@ 2025-01-14  4:38 ` Mike Gilbert
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Gilbert @ 2025-01-14  4:38 UTC (permalink / raw
  To: gentoo-commits

commit:     a2214f28684de4264131ae7adaa519ccd2e5d678
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 22 04:35:15 2024 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Dec 22 19:12:55 2024 +0000
URL:        https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=a2214f28

ci: add 32-bit musl build

Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
(cherry picked from commit 2d6203f9b7b527d2179569d7ebcf4371881ab2a8)

 .github/workflows/build-test-ci.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml
index 70880d4..fff33c7 100644
--- a/.github/workflows/build-test-ci.yml
+++ b/.github/workflows/build-test-ci.yml
@@ -34,15 +34,18 @@ jobs:
 
   musl:
     runs-on: ubuntu-latest
+    strategy:
+      matrix:
+        platform: [linux/amd64, linux/386]
     container:
       image: alpine:latest
-      options: --cap-add=SYS_PTRACE
+      options: --cap-add=SYS_PTRACE --platform=${{ matrix.platform }}
     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
+        uses: taiki-e/checkout-action@v1
 
       - name: Build
         run: |


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/sandbox:master commit in: .github/workflows/
  2024-12-22 19:19 [gentoo-commits] proj/sandbox:stable-2.x " Mike Gilbert
@ 2025-01-14  4:38 ` Mike Gilbert
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Gilbert @ 2025-01-14  4:38 UTC (permalink / raw
  To: gentoo-commits

commit:     1a9738588dafea37b9da13ecef4be48fe659ea21
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 22 05:25:15 2024 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Dec 22 19:12:55 2024 +0000
URL:        https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=1a973858

ci: use actions/checkout@v4

Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
(cherry picked from commit b229196708f6b5b26dc1be42c57d8e60f664a5f4)

 .github/workflows/build-test-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build-test-ci.yml b/.github/workflows/build-test-ci.yml
index fff33c7..e89e32d 100644
--- a/.github/workflows/build-test-ci.yml
+++ b/.github/workflows/build-test-ci.yml
@@ -21,7 +21,7 @@ jobs:
         sudo apt-get update -qq
         sudo apt-get install build-essential gcc gcc-multilib clang automake autoconf autoconf-archive libtool pax-utils -qy
 
-    - uses: actions/checkout@v3
+    - uses: actions/checkout@v4
       name: Checkout
 
     - name: Build


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2025-01-14  4:38 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-22 19:19 [gentoo-commits] proj/sandbox:stable-2.x commit in: .github/workflows/ Mike Gilbert
2025-01-14  4:38 ` [gentoo-commits] proj/sandbox:master " Mike Gilbert
  -- strict thread matches above, loose matches on Subject: below --
2024-12-22 19:19 [gentoo-commits] proj/sandbox:stable-2.x " Mike Gilbert
2025-01-14  4:38 ` [gentoo-commits] proj/sandbox:master " Mike Gilbert
2024-12-22 19:19 [gentoo-commits] proj/sandbox:stable-2.x " Mike Gilbert
2025-01-14  4:38 ` [gentoo-commits] proj/sandbox:master " Mike Gilbert
2024-12-22  5:29 Mike Gilbert
2024-12-22  5:29 Mike Gilbert
2024-12-22  5:29 Mike Gilbert
2023-06-23 17:25 Mike Gilbert
2023-06-23 17:25 Mike Gilbert
2023-01-06  7:14 Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox