From 328759a60f1475af575b60b098b81cb1c4cbea1c Mon Sep 17 00:00:00 2001 From: strawberry Date: Wed, 17 Jul 2024 22:57:51 -0400 Subject: [PATCH] ci: run quick smoke test of x86_64 static binary Signed-off-by: strawberry --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef1c2b2e..cfa6adee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -259,6 +259,14 @@ jobs: mv -v target/release/conduwuit static-${{ matrix.target }} mv -v target/release/${{ matrix.target }}.deb ${{ matrix.target }}.deb + # quick smoke test of the x86_64 static binary + - name: Run x86_64 static binary + run: | + # GH actions default runners are x86_64 only + if file result/bin/conduit | grep x86-64; then + result/bin/conduit --version + fi + - name: Upload static-${{ matrix.target }} uses: actions/upload-artifact@v4 with: