Switch the builder image to rust:1-bookworm — bevy's native linux build needs glibc + alsa/udev, which does not build against musl — and add the x86_64-pc-windows-gnu target with mingw-w64 for the windows cross-compile (linker set from the Makefile, no per-repo .cargo/config). Mac stays out: darwin needs osxcross, same as the ebitengine mac plan. Builder steps pull the image on every run so :latest updates reach the runner. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
42 lines
966 B
YAML
42 lines
966 B
YAML
steps:
|
|
- name: version
|
|
image: alpine
|
|
commands:
|
|
- apk add --no-cache git make jq
|
|
- make ci-version
|
|
|
|
- name: build
|
|
image: git.teletypegames.org/internal/bevy-builder:latest
|
|
pull: true
|
|
commands:
|
|
- make ci-export
|
|
|
|
- name: binaries
|
|
image: git.teletypegames.org/internal/bevy-builder:latest
|
|
pull: true
|
|
commands:
|
|
- make ci-binaries
|
|
|
|
- name: upload
|
|
image: alpine
|
|
environment:
|
|
DROPAREA_HOST: vps.teletype.hu
|
|
DROPAREA_PORT: 2223
|
|
DROPAREA_TARGET_PATH: /home/drop
|
|
DROPAREA_USER: drop
|
|
DROPAREA_SSH_PASSWORD:
|
|
from_secret: droparea_ssh_password
|
|
commands:
|
|
- apk add --no-cache make openssh-client sshpass
|
|
- make ci-upload
|
|
|
|
- name: update
|
|
image: alpine
|
|
environment:
|
|
UPDATE_SERVER: https://teletypegames.org
|
|
UPDATE_SECRET:
|
|
from_secret: update_secret_key
|
|
commands:
|
|
- apk add --no-cache make curl
|
|
- make ci-update
|