@@ -7,20 +7,29 @@ jobs:
|
||||
Build:
|
||||
runs-on: ubuntu-test
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
- name: 🧾 Check out
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Packages cache
|
||||
- name: 📦 Packages cache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ github.workspace }}/build/.packages
|
||||
key: ${{ runner.os }}-xmake_cache
|
||||
|
||||
- name: XMake config
|
||||
run: xmake f -p linux -y
|
||||
- name: 🤖 Setup Godot
|
||||
uses: chickensoft-games/setup-godot@v1
|
||||
with:
|
||||
version: 4.2.2
|
||||
use-dotnet: false
|
||||
|
||||
- name: Build
|
||||
- name: ⚙️ XMake config
|
||||
run: xmake f -m release -p linux -y
|
||||
|
||||
- name: 🏗️ Build
|
||||
run: xmake
|
||||
|
||||
- name: Test
|
||||
run: xmake test
|
||||
- name: 🧐 Test
|
||||
run: xmake test
|
||||
|
||||
- name: 🚀 Publish
|
||||
run: xmake p
|
||||
|
||||
Reference in New Issue
Block a user