Compare commits
20 Commits
main
...
1c855d1b77
| Author | SHA1 | Date | |
|---|---|---|---|
| 1c855d1b77 | |||
| daf382e35e | |||
| 878f2fd801 | |||
| 2f86ef7771 | |||
| 631d3059f2 | |||
| dd38a03165 | |||
| 6307cd8ed8 | |||
| e1a072d6c3 | |||
| f26e2df0b2 | |||
| abc3278a04 | |||
| 4acbde4606 | |||
| 26e7badaaa | |||
| e222e01225 | |||
| 8d728d8f55 | |||
| 442a4d4e5e | |||
| 011254d6ae | |||
| 7bb2cfdc20 | |||
| bb46ac92ae | |||
| 08b2f79529 | |||
| 5858ea5cbe |
@@ -1,32 +1,39 @@
|
||||
name: Linux arm64
|
||||
run-name: Build And Test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
on: [push]
|
||||
|
||||
env:
|
||||
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 60
|
||||
|
||||
jobs:
|
||||
Build:
|
||||
runs-on: ubuntu-latest
|
||||
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@v2
|
||||
with:
|
||||
version: 4.2.2
|
||||
use-dotnet: false
|
||||
include-templates: true
|
||||
|
||||
- name: Build
|
||||
- name: ⚙️ XMake config
|
||||
run: xmake f -m release -p linux -y
|
||||
|
||||
- name: 🏗️ Build
|
||||
run: xmake
|
||||
|
||||
- name: Test
|
||||
- name: 🧐 Test
|
||||
run: xmake test
|
||||
|
||||
- name: 🚀 Publish
|
||||
run: xmake p
|
||||
|
||||
Reference in New Issue
Block a user