yes
Some checks failed
Linux arm64 / Build (push) Failing after 5m25s

This commit is contained in:
2024-08-13 14:58:37 +02:00
parent abc3278a04
commit f26e2df0b2

View File

@@ -7,20 +7,29 @@ jobs:
Build: Build:
runs-on: ubuntu-test runs-on: ubuntu-test
steps: steps:
- name: Check out repository code - name: 🧾 Check out
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Packages cache - name: 📦 Packages cache
uses: actions/cache@v4 uses: actions/cache@v4
with: with:
path: ${{ github.workspace }}/build/.packages path: ${{ github.workspace }}/build/.packages
key: ${{ runner.os }}-xmake_cache key: ${{ runner.os }}-xmake_cache
- name: XMake config - name: 🤖 Setup Godot
run: xmake f -p linux -y 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 run: xmake
- name: Test - name: 🧐 Test
run: xmake test run: xmake test
- name: 🚀 Publish
run: xmake p