From 3804ab330055d40960a08d6567990af42c2fd6c5 Mon Sep 17 00:00:00 2001 From: Lengyue Date: Tue, 19 Dec 2023 04:48:02 +0000 Subject: [PATCH] rm data server ci --- .github/workflows/data-server.yml | 36 ------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/data-server.yml diff --git a/.github/workflows/data-server.yml b/.github/workflows/data-server.yml deleted file mode 100644 index 8b8f013a..00000000 --- a/.github/workflows/data-server.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: data-server -on: - push: - branches: - - main - paths: - - data_server - workflow_dispatch: {} - -jobs: - build: - name: release ${{ matrix.target }} - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - target: [x86_64-pc-windows-gnu, x86_64-unknown-linux-musl] - steps: - - uses: actions/checkout@v4 - - name: Install Protoc - uses: arduino/setup-protoc@v2 - with: - version: "25.1" - - name: Compile - uses: rust-build/rust-build.action@v1.4.4 - with: - RUSTTARGET: ${{ matrix.target }} - UPLOAD_MODE: none - SRC_DIR: data_server - - name: Upload artifact - uses: actions/upload-artifact@v3 - with: - name: Binary - path: | - ${{ steps.compile.outputs.BUILT_ARCHIVE }} - ${{ steps.compile.outputs.BUILT_CHECKSUM }}