Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d6bb4b6aea | |||
| bb6174d417 | |||
| 3c939d55aa | |||
| 9966be50c1 | |||
| 81b8ebb820 | |||
| 1a2d7a22af | |||
| 959e38eb78 | |||
| 8e3c7469aa | |||
| 2765228b93 | |||
| 297a5b89ec | |||
| 8faae72ae7 | |||
| 1a789ab5b2 | |||
| d4bf1c3da7 | |||
| 1c855d1b77 | |||
| daf382e35e | |||
| 878f2fd801 | |||
| 2f86ef7771 | |||
| 631d3059f2 | |||
| dd38a03165 | |||
| 6307cd8ed8 | |||
| e1a072d6c3 | |||
| f26e2df0b2 | |||
| abc3278a04 | |||
| 4acbde4606 | |||
| 26e7badaaa | |||
| e222e01225 | |||
| 8d728d8f55 | |||
| 442a4d4e5e | |||
| 011254d6ae | |||
| 7bb2cfdc20 | |||
| bb46ac92ae | |||
| 08b2f79529 | |||
| 5858ea5cbe |
@@ -1,43 +1,60 @@
|
||||
name: Linux arm64
|
||||
run-name: Build And Test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
on: [push]
|
||||
|
||||
env:
|
||||
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 60
|
||||
XMAKE_ROOT: "y"
|
||||
|
||||
jobs:
|
||||
Build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
- name: 🧾 Check out
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Packages List
|
||||
run : |
|
||||
xmake show -l packages | grep -E 'require|project' > ${{ github.workspace }}/packages.txt
|
||||
cat ${{ github.workspace }}/packages.txt
|
||||
|
||||
- name: Calc deps hash
|
||||
uses: seepine/hash-files@v1
|
||||
id: get-hash
|
||||
with:
|
||||
patterns: 'packages.txt'
|
||||
|
||||
- name: Packages cache
|
||||
- name: 📦 Packages cache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/.xmake/packages
|
||||
key: ${{ runner.os }}-${{ steps.get-hash.outputs.hash }}
|
||||
path: ${{ github.workspace }}/build/.packages
|
||||
key: ${{ runner.os }}-xmake_cache
|
||||
|
||||
- name: XMake config
|
||||
run: xmake f --policies=package.install_only -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: 🍗 Setup XMake
|
||||
uses: xmake-io/github-action-setup-xmake@v1
|
||||
with:
|
||||
xmake-version: latest
|
||||
actions-cache-folder: '.xmake-cache'
|
||||
actions-cache-key: 'xmake-ubuntu'
|
||||
|
||||
- name: 🐍 Install Python
|
||||
run: xmake require --extra={system=false} -y python
|
||||
|
||||
- name: ⚙️ XMake config
|
||||
# TODO: change that to release
|
||||
run: xmake f -m debug -p linux -y -v
|
||||
|
||||
- name: 🏗️ Build
|
||||
run: xmake
|
||||
|
||||
- name: Test
|
||||
- name: 🧐 Test
|
||||
run: xmake test
|
||||
|
||||
- name: 🚀 Publish
|
||||
# the first command is needed only for the template
|
||||
run: |
|
||||
xmake gengdextension
|
||||
xmake import-assets
|
||||
xmake p
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: Debug Build
|
||||
path: ${{ github.workspace }}/publish
|
||||
|
||||
@@ -82,7 +82,7 @@ encrypt_directory=false
|
||||
custom_template/debug=""
|
||||
custom_template/release=""
|
||||
debug/export_console_wrapper=1
|
||||
binary_format/embed_pck=false
|
||||
binary_format/embed_pck=true
|
||||
texture_format/bptc=true
|
||||
texture_format/s3tc=true
|
||||
texture_format/etc=false
|
||||
|
||||
@@ -16,7 +16,7 @@ add_rules("mode.debug", "mode.release")
|
||||
set_languages("c++20")
|
||||
|
||||
-- use latest 4.x version by default
|
||||
add_requires("godotcpp4")
|
||||
add_requires("godotcpp4 4.2")
|
||||
|
||||
|
||||
includes("tasks.lua")
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
|
||||
if is_mode("debug") then
|
||||
add_defines("DEBUG_ENABLED")
|
||||
end
|
||||
|
||||
|
||||
-- more on https://xmake.io/#/manual/project_target
|
||||
target(PROJECT_NAME)
|
||||
set_kind("shared")
|
||||
@@ -35,8 +41,9 @@ target(PROJECT_NAME)
|
||||
on_run(
|
||||
(function(godot_project_folder)
|
||||
return function(target)
|
||||
os.execv("echo", {"godot --path", godot_project_folder})
|
||||
os.exec("godot --path " .. godot_project_folder)
|
||||
local cmd = format("godot --path %s", godot_project_folder)
|
||||
os.execv("echo", {cmd})
|
||||
os.exec(cmd)
|
||||
end
|
||||
end)(GODOT_PROJECT_FOLDER)
|
||||
)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
-- target_platform: the target platform, like "Windows Desktop"
|
||||
-- name: the export execute name, it will be endswith ".exe" on windows
|
||||
task("export")
|
||||
on_run((function(godot_project_folder, publish_folder)
|
||||
on_run((function(godot_project_folder, publish_folder, project_name)
|
||||
return function(target_platform)
|
||||
local name = godot_project_folder
|
||||
|
||||
@@ -35,13 +35,15 @@ task("export")
|
||||
|
||||
local godot_project_file = path.join(godot_project_folder, "project.godot")
|
||||
|
||||
local export_path = path.absolute(path.join(publish_folder, name))
|
||||
local export_path = path.absolute(path.join(publish_folder, project_name))
|
||||
|
||||
os.execv("echo", {"godot", godot_project_file, export_mode, target_platform, export_path})
|
||||
os.exec("godot %s --headless --%s %s %s", godot_project_file, export_mode, "\"" .. target_platform .. "\"", export_path)
|
||||
local cmd = format("godot %s --headless --%s %s %s", godot_project_file, export_mode, "\"" .. target_platform .. "\"", export_path)
|
||||
|
||||
os.execv("echo", {cmd})
|
||||
os.exec(cmd)
|
||||
end
|
||||
|
||||
end)(GODOT_PROJECT_FOLDER, PUBLISH_FOLDER))
|
||||
end)(GODOT_PROJECT_FOLDER, PUBLISH_FOLDER, PROJECT_NAME))
|
||||
task_end()
|
||||
|
||||
|
||||
@@ -202,3 +204,22 @@ android.release.arm64 = "res://lib/libProjectName.android_release_arm64.so"
|
||||
description = "Generate gdextension file",
|
||||
}
|
||||
task_end()
|
||||
|
||||
|
||||
task("import-assets")
|
||||
on_run((function(godot_project_folder, project_name)
|
||||
return function ()
|
||||
local godot_project_file = path.join(godot_project_folder, "project.godot")
|
||||
|
||||
local cmd = format("godot --headless --import %s", godot_project_file)
|
||||
os.execv("echo", {cmd})
|
||||
os.exec(cmd)
|
||||
end
|
||||
end)(GODOT_PROJECT_FOLDER, PROJECT_NAME))
|
||||
|
||||
set_menu {
|
||||
usage = "xmake import-assets",
|
||||
|
||||
description = "Import project assets",
|
||||
}
|
||||
task_end()
|
||||
Reference in New Issue
Block a user