完善本地测试发布流程
Some checks failed
CI / Docker-Build (push) Failing after 32m28s

This commit is contained in:
soul-walker 2024-03-20 21:57:05 +08:00
parent 33fc91f9de
commit ab15fcf568

View File

@ -9,17 +9,14 @@ jobs:
Docker-Build: Docker-Build:
runs-on: joylink-local233 runs-on: joylink-local233
steps: steps:
- name: Test cmd
run: |
scp --help
- name: 检出代码 - name: 检出代码
uses: https://gitea.joylink.club/actions/checkout@v4 uses: https://gitea.joylink.club/actions/checkout@v4
with: with:
submodules: recursive submodules: recursive
- name: 设置node环境 - name: 设置node环境
uses: https://gitea.joylink.club/actions/setup-node@v4 uses: https://gitea.joylink.club/actions/local-setup-node@v0.1.1
with: with:
node-version: 18 version: 'v18.19.1'
cache: 'yarn' cache: 'yarn'
cache-dependency-path: 'yarn.lock' cache-dependency-path: 'yarn.lock'
- name: 安装yarn,并run build - name: 安装yarn,并run build
@ -31,18 +28,26 @@ jobs:
yarn config set registry https://registry.npmmirror.com yarn config set registry https://registry.npmmirror.com
yarn yarn
yarn run build:test yarn run build:test
- name: 发布到本地测试环境
run: |
tar czvf ./dist.tar.gz ./dist tar czvf ./dist.tar.gz ./dist
ls -lh - name: 打包发送到本地测试环境
# uses: https://gitea.joylink.club/appleboy/ssh-action@v1.0.3 uses: https://gitea.joylink.club/appleboy/scp-action@v0.1.7
# with: with:
# host: ${{ secrets.LOCAL_233_SSH_HOST }} host: ${{ secrets.LOCAL_233_SSH_HOST }}
# port: ${{ secrets.LOCAL_233_SSH_PORT }} username: ${{ secrets.LOCAL_233_SSH_USER }}
# username: ${{ secrets.LOCAL_233_SSH_USER }} password: ${{ secrets.LOCAL_233_SSH_PASSWORD }}
# password: ${{ secrets.LOCAL_233_SSH_PASSWORD }} port: ${{ secrets.LOCAL_233_SSH_PORT }}
# script: | source: ./dist.tar.gz
# docker rm -f rts-sim-testing-service || echo "rts-sim-testing-service not exist" target: /home/minio/oss/rts-sim-testing-client/dist-test.tar.gz
# docker pull gitea.joylink.club/joylink/rts-sim-testing-service:local-test - name: SSH连接233并解压发布
# docker run --name rts-sim-testing-service --restart=always --network net --ip 192.168.53.191 -d -p 9091:9091 -v /usr/local/joylink/logs/bjrtsts:/logs/bjrtsts gitea.joylink.club/joylink/rts-sim-testing-service:local-test rts-sim-testing-service -config test_local uses: https://gitea.joylink.club/appleboy/ssh-action@v1.0.3
with:
host: ${{ secrets.LOCAL_233_SSH_HOST }}
port: ${{ secrets.LOCAL_233_SSH_PORT }}
username: ${{ secrets.LOCAL_233_SSH_USER }}
password: ${{ secrets.LOCAL_233_SSH_PASSWORD }}
script: |
cd /home/minio/oss/rts-sim-testing-client
mkdir -p /usr/local/joylink/client
rm -rf /usr/local/joylink/client/bjrtss
tar xz --strip 1 -C /usr/local/joylink/client/bjrtss -f dist-test.tar.gz
- run: echo "This job's status is ${{ job.status }}." - run: echo "This job's status is ${{ job.status }}."