Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
stages:
- build

build_and_install:
stage: build
image: debian:stable-20200414
tags:
- local
before_script:
- apt update && apt install -y build-essential bison flex python pkg-config autoconf automake git gettext autopoint libfuse-dev libdevmapper-dev libfreetype6-dev
script:
- ./bootstrap
- ./configure
- make -j2
- make install
- grub-install --version
- ls /usr/local/lib/grub/i386-pc/slaunch.module
- ls /usr/local/lib/grub/i386-pc/slaunch.mod

build_nixpkg:
stage: build
variables:
NIXPKG: "grub"
GRUB_COMMIT: "$CI_COMMIT_SHA"
GRUB_TAG: "$CI_COMMIT_REF_NAME"
trigger:
project: trenchboot1/3mdeb/nixos-trenchboot-configs
branch: master
strategy: depend