Merge branch 'master' into develop
This commit is contained in:
commit
a180682b82
40
.gitea/workflows/CI_local_test.yaml
Normal file
40
.gitea/workflows/CI_local_test.yaml
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
name: CI
|
||||||
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- local-test
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Docker-Build:
|
||||||
|
runs-on: joylink-local233
|
||||||
|
steps:
|
||||||
|
- name: 检出代码
|
||||||
|
uses: https://gitea.joylink.club/actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
- name: 设置node环境
|
||||||
|
uses: https://gitea.joylink.club/actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: '18.x'
|
||||||
|
- name: 安装yarn,并run build
|
||||||
|
run: |
|
||||||
|
node -v
|
||||||
|
npm -v
|
||||||
|
npm config set registry https://registry.npmmirror.com
|
||||||
|
npm install --global yarn
|
||||||
|
yarn config set registry https://registry.npmmirror.com
|
||||||
|
yarn
|
||||||
|
yarn run build:test
|
||||||
|
- name: 发布到本地测试环境
|
||||||
|
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: |
|
||||||
|
docker rm -f rts-sim-testing-service || echo "rts-sim-testing-service not exist"
|
||||||
|
docker pull gitea.joylink.club/joylink/rts-sim-testing-service:local-test
|
||||||
|
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
|
||||||
|
- run: echo "This job's status is ${{ job.status }}."
|
2
.gitmodules
vendored
2
.gitmodules
vendored
@ -1,3 +1,3 @@
|
|||||||
[submodule "rts-sim-testing-message"]
|
[submodule "rts-sim-testing-message"]
|
||||||
path = rts-sim-testing-message
|
path = rts-sim-testing-message
|
||||||
url = http://120.46.212.6:3000/joylink/rts-sim-testing-message.git
|
url = https://gitea.joylink.club/joylink/rts-sim-testing-message.git
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 6dff8221d5e43e87727328fcd3260559ff13a2a3
|
Subproject commit cd5946438c5100f5685877ea5ce632fd5b5962a7
|
Loading…
Reference in New Issue
Block a user