From e11da2c44e9b27bc2de47c1ecc6bb05b4cf0b21d Mon Sep 17 00:00:00 2001 From: Prem Chaitanya Prathi Date: Mon, 9 Feb 2026 19:07:50 +0530 Subject: [PATCH] remove manual CI as nix integration is done --- .github/workflows/ci-manual.yml | 42 --------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/ci-manual.yml diff --git a/.github/workflows/ci-manual.yml b/.github/workflows/ci-manual.yml deleted file mode 100644 index 688f64f15..000000000 --- a/.github/workflows/ci-manual.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: On-demand multi-platform build - -on: - push: - branches: - - poc/logos-testnet-mix - workflow_dispatch: - inputs: - ref: - description: "Branch, tag, or commit SHA to build" - required: true - default: "master" - -jobs: - build: - strategy: - matrix: - include: - - platform: linux - runner: ubuntu-latest - #- platform: windows - # runner: windows-latest - - platform: macos - runner: macos-latest - runs-on: ${{ matrix.runner }} - - steps: - - name: Checkout requested ref - uses: actions/checkout@v4 - with: - ref: ${{ inputs.ref || github.ref }} - - - name: Build libwaku - run: | - echo "Building ref=${{ inputs.ref || github.ref }} for platform=${{ matrix.platform }}" - make libwaku - - - name: Upload artifacts - uses: actions/upload-artifact@v4 - with: - name: libwaku-${{ matrix.platform }} - path: build/libwaku.*