mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
d8c8b5b272
Makes libtsm a static library rather than dynamic so that it doesn't have to be installed as a system library on the user's operating system. Also updates SConstruct to work on more operating systems other than just NixOS. Adds a number of docker files for building the library on various distributions (NixOS, Arch Linux, Ubuntu). Uses a fork of godot-cpp with an updated godot_headers submodule that includes godotengine/godot_headers#76. We should go back to tracking https://github.com/godotengine/godot-cpp once the submodule has been updated in that repo.
17 lines
350 B
YAML
17 lines
350 B
YAML
language: nix
|
|
|
|
services:
|
|
- docker
|
|
|
|
jobs:
|
|
include:
|
|
- name: "Run tests"
|
|
env: SERVICE=tests
|
|
- name: "Build native on Arch Linux"
|
|
env: SERVICE=build-archlinux
|
|
- name: "Build native on NixOS"
|
|
env: SERVICE=build-nixos
|
|
- name: "Build native on Ubuntu"
|
|
env: SERVICE=build-ubuntu
|
|
|
|
script: docker-compose run $SERVICE
|