mirror of
https://github.com/pnx/m16vm
synced 2026-06-16 03:44:55 +02:00
21 lines
298 B
YAML
21 lines
298 B
YAML
image: gcc:latest
|
|
|
|
stages:
|
|
- build
|
|
- package
|
|
|
|
compile:
|
|
stage: build
|
|
script: make
|
|
|
|
release:
|
|
stage: package
|
|
script: make
|
|
only:
|
|
- tags
|
|
artifacts:
|
|
name: "m16-$CI_COMMIT_REF_SLUG"
|
|
paths:
|
|
- m16vm
|
|
- m16as
|
|
- README.md
|