Skip to content

Update links with castle- #18

Update links with castle-

Update links with castle- #18

Workflow file for this run

# ----------------------------------------------------------------------------
# GitHub Actions workflow to build this application.
# Using latest Castle Game Engine ( https://castle-engine.io/ ) snapshot.
# For multiple platforms (Linux, Windows, macOS, Android).
#
# This uses GitHub-hosted runners, that is: you don't need to set up any server
# infrastructure, GitHub provides it all for free for open-source projects.
#
# See docs:
# - https://castle-engine.io/github_actions
# - https://docs.github.com/en/actions
# ----------------------------------------------------------------------------
name: Build
on: [push, pull_request]
jobs:
# Build for platforms supported by
# CGE Docker image https://hub.docker.com/r/kambi/castle-engine-cloud-builds-tools/ .
#
# Since setting up Docker image takes majority of time (5-6 mins)
# compared to actually getting and compiling CGE (1 min)
# and building application (~1 min for each platform),
# we build all platforms possible within one job.
build-using-docker:
name: Build Using Docker
runs-on: ubuntu-latest
container: kambi/castle-engine-cloud-builds-tools:cge-none
steps:
- uses: actions/checkout@v4
# Set env CASTLE_ENGINE_PATH following
# https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#environment-files
# https://brandur.org/fragments/github-actions-env-vars-in-env-vars
- name: Castle Game Engine - Setup environment
run: echo "CASTLE_ENGINE_PATH=$GITHUB_WORKSPACE/castle-engine" >> $GITHUB_ENV
- name: Castle Game Engine - Clone snapshot
run: git clone --depth 1 --single-branch --branch snapshot https://github.com/castle-engine/castle-engine/
- name: Castle Game Engine - Build
run: cd $CASTLE_ENGINE_PATH/tools/build-tool/ && ./castle-engine_compile.sh
- name: Package Windows
run: $CASTLE_ENGINE_PATH/tools/build-tool/castle-engine package --os=win64 --cpu=x86_64 --verbose
- name: Archive Artifacts
# See https://github.com/actions/upload-artifact
uses: actions/upload-artifact@v4
with:
name: windows-build
# Note: Keep paths that start with asterisk in double qoutes, to avoid misinterpreting as YAML reference.
# See https://stackoverflow.com/questions/19109912/yaml-do-i-need-quotes-for-strings-in-yaml
# https://yamlchecker.com/
path: "*-win64-x86_64.zip"
if-no-files-found: error
- name: Package Linux
run: $CASTLE_ENGINE_PATH/tools/build-tool/castle-engine package --os=linux --cpu=x86_64 --verbose
- name: Archive Artifacts
uses: actions/upload-artifact@v4
with:
name: linux-build
path: "*-linux-x86_64.tar.gz"
if-no-files-found: error
- name: Package Android
run: $CASTLE_ENGINE_PATH/tools/build-tool/castle-engine package --target=android --verbose
- name: Archive Artifacts
uses: actions/upload-artifact@v4
with:
name: android-build
path: "*.apk"
if-no-files-found: error
# Build for platforms supported from macOS.
# This means to build for macOS and (maybe in the future) iOS.
build-macos:
name: Build Using macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Install FPC+Lazarus
uses: gcarreno/[email protected]
with:
lazarus-version: stable
- name: Castle Game Engine - Setup environment
run: echo "CASTLE_ENGINE_PATH=$GITHUB_WORKSPACE/castle-engine" >> $GITHUB_ENV
- name: Castle Game Engine - Clone snapshot
run: git clone --depth 1 --single-branch --branch snapshot https://github.com/castle-engine/castle-engine/
- name: Castle Game Engine - Build
run: cd $CASTLE_ENGINE_PATH/tools/build-tool/ && ./castle-engine_compile.sh
- name: Package macOS
run: $CASTLE_ENGINE_PATH/tools/build-tool/castle-engine package --os=darwin --cpu=x86_64 --verbose
- name: Archive Artifacts
uses: actions/upload-artifact@v4
with:
name: macos-build
path: "*-darwin-x86_64.zip"
if-no-files-found: error