FG42/.gitlab-ci.yml

70 lines
1.7 KiB
YAML
Raw Permalink Normal View History

2020-05-17 17:40:18 +01:00
image: "debian:unstable"
2020-03-16 00:14:39 +00:00
stages:
- build
2020-03-17 10:56:25 +00:00
.build:
image: debian:stable-slim
2020-03-16 00:14:39 +00:00
stage: build
before_script:
2020-05-17 16:57:30 +01:00
- apt update && apt install -y make wget git emacs sudo gnutls-bin
- git clone -b $CI_COMMIT_REF_NAME https://gitlab.com/FG42/FG42 ~/.fg42/ && cd ~/.fg42/ && make install &&
2020-03-16 00:14:39 +00:00
script:
- cd ~/.fg42/ && fg42 -nw --script build.el
2020-11-11 12:37:44 +00:00
.build-v3:
image: debian:stable-slim
stage: build
before_script:
- apt update && apt install -y make wget git emacs sudo
- git clone -b $CI_COMMIT_REF_NAME https://gitlab.com/FG42/FG42 ~/.fg42/
2020-04-15 18:42:44 +01:00
script:
- ~/.fg42/bin/fbt build
build-branches-v3:
extends: .build-v3
only:
- branches
2020-11-11 12:37:44 +00:00
build-branches:
extends: .build
script:
- cd /root/.fg42/ && fg42 -nw --script build.el
- cd /root/ && tar zcf ~/fg42.$CI_COMMIT_REF_NAME.tar.gz .fg42/
- mv ~/fg42.$CI_COMMIT_REF_NAME.tar.gz /builds/$CI_PROJECT_PATH/
artifacts:
name: "fg42.$CI_COMMIT_REF_SLUG"
when: on_success
paths:
- fg42.$CI_COMMIT_REF_NAME.tar.gz
only:
- branches
2020-03-17 10:56:25 +00:00
build-branches:
extends: .build
script:
- cd /root/.fg42/ && fg42 -nw --script build.el
- cd /root/ && tar zcf ~/fg42.$CI_COMMIT_REF_NAME.tar.gz .fg42/
- mv ~/fg42.$CI_COMMIT_REF_NAME.tar.gz /builds/$CI_PROJECT_PATH/
artifacts:
name: "fg42.$CI_COMMIT_REF_SLUG"
when: on_success
paths:
- fg42.$CI_COMMIT_REF_NAME.tar.gz
2020-03-17 10:56:25 +00:00
only:
- branches
build-package:
2020-03-17 10:56:25 +00:00
extends: .build
script:
- cd /root/.fg42/ && fg42 -nw --script build.el
- cd /root/ && tar zcf ~/fg42.$CI_COMMIT_TAG.tar.gz .fg42/
- mv ~/fg42.$CI_COMMIT_TAG.tar.gz /builds/$CI_PROJECT_PATH/
artifacts:
name: "fg42.$CI_COMMIT_TAG"
when: on_success
paths:
- fg42.$CI_COMMIT_TAG.tar.gz
only:
- tags