aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorRustDesk <[email protected]>2023-12-22 20:03:30 +0800
committerGitHub <[email protected]>2023-12-22 20:03:30 +0800
commitfc775102ff7412e23948f9476c291e68bffcb87c (patch)
treee7c8913d49b74af6613305d8bf3a5490a66dbd19 /.github
parent891f388040a8f396c2dab596b84897d6e27bc767 (diff)
downloadrustdesk-server-fc775102ff7412e23948f9476c291e68bffcb87c.tar.gz
rustdesk-server-fc775102ff7412e23948f9476c291e68bffcb87c.zip
Delete .github/workflows/test-selfhosted.yaml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test-selfhosted.yaml53
1 files changed, 0 insertions, 53 deletions
diff --git a/.github/workflows/test-selfhosted.yaml b/.github/workflows/test-selfhosted.yaml
deleted file mode 100644
index 4340bdb..0000000
--- a/.github/workflows/test-selfhosted.yaml
+++ /dev/null
@@ -1,53 +0,0 @@
-name: test self-hosted runner
-
-on:
- schedule:
- # schedule build every night
- - cron: "0 0 * * *"
- workflow_dispatch:
-
-jobs:
- build:
- name: Build
- #runs-on: ubuntu-22.04
- # need to docker login ghcr.io on self-hosted machine for cross build, use github username and personal token (lowest permission is fine)
- runs-on: self-hosted
- # Runner docker image
- # with container, it is hard to handle cross build (need docker in docker)
- #container:
- #image: archlinux/archlinux:base-devel
- strategy:
- fail-fast: false
- matrix:
- job:
- - { name: "amd64", target: "x86_64-unknown-linux-musl" }
- - { name: "arm64v8", target: "aarch64-unknown-linux-musl" }
- - { name: "armv7", target: "armv7-unknown-linux-musleabihf" }
- - { name: "i386", target: "i686-unknown-linux-musl" }
- - { name: "amd64fb", target: "x86_64-unknown-freebsd" }
-
- steps:
-
- - name: Checkout
- uses: actions/checkout@v3
-
- - name: Install toolchain
- uses: actions-rs/toolchain@v1
- with:
- toolchain: "stable"
- override: true
- default: true
- components: rustfmt
- profile: minimal
- target: ${{ matrix.job.target }}
-
- - name: Exec sqkx
- run: |
- cargo install sqlx-cli
-
- - name: Build
- uses: actions-rs/cargo@v1
- with:
- command: build
- args: --release --target=${{ matrix.job.target }}
- use-cross: true