1
0
Files
DDNet_Server/.gitea/workflows/build.yaml
expvintl 5e18e9e395
Some checks failed
构建DDNet_Server / build (push) Failing after 1s
更新 .gitea/workflows/build.yaml
2024-05-04 23:38:01 +08:00

22 lines
512 B
YAML

name: 构建DDNet_Server
run-name: ${{ gitea.actor }} 测试项目 🚀
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: "配置环境"
run: |
sudo apt update
sudo apt install bc gcc g++
- name: "拉取项目"
run: |
mkdir project
cd project
git clone http://192.168.6.4:3000/expvintl/DDNet_Server
cd DDNet_Server
make -j8
- run: echo "任务状态: ${{ job.status }}."