Jelajahi Sumber

Auto build data server

Lengyue 2 tahun lalu
induk
melakukan
eac3b6840d
1 mengubah file dengan 31 tambahan dan 0 penghapusan
  1. 31 0
      .github/workflows/data-server.yml

+ 31 - 0
.github/workflows/data-server.yml

@@ -0,0 +1,31 @@
+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: Compile
+        uses: rust-build/rust-build.action@v1.4.4
+        with:
+          RUSTTARGET: ${{ matrix.target }}
+          UPLOAD_MODE: none
+      - name: Upload artifact
+        uses: actions/upload-artifact@v3
+        with:
+          name: Binary
+          path: |
+            ${{ steps.compile.outputs.BUILT_ARCHIVE }}
+            ${{ steps.compile.outputs.BUILT_CHECKSUM }}