From f70d5a225000fb275ed814d8812a8a0d7512a86e Mon Sep 17 00:00:00 2001 From: expvintl Date: Sat, 4 May 2024 23:31:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20.gitea/workflows/build.yam?= =?UTF-8?q?l?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build.yaml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index c4be123..739ed43 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -3,17 +3,18 @@ run-name: ${{ gitea.actor }} 测试项目 🚀 on: [push] jobs: - Explore-Gitea-Actions: + 构建DDNetServer: runs-on: ubuntu-latest steps: - - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" - - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - - name: Check out repository code - uses: actions/checkout@v3 - - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository + - name: 配置环境 run: | - ls ${{ gitea.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file + 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 }}." \ No newline at end of file