10 lines
195 B
YAML
10 lines
195 B
YAML
kind: pipeline
|
|
name: continuous integration
|
|
|
|
steps:
|
|
- name: build & test
|
|
image: ubuntu:jammy
|
|
commands:
|
|
- apt update && apt install -y clang libsdl2-dev python3.10
|
|
- python3.10 ./build.py
|