summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: ed664ab522b54383f4111ecb0d40fdbef135a9d3 (plain) (tree)




























                                                                      
# Copied in from Moubootaur Legends's Hercules .gitlab-ci.yml
stages:
  - build

variables: &base_vars
  DEBIAN_COMMON_PACKAGES: make python3 git gcc g++

.prerequisites: &prerequisites
  before_script:
    - echo "Building TMW Athena $CI_BUILD_NAME"
    - uname -a
    - apt-get update
    - apt-get install -y -qq $INSTALL_PACKAGES $DEBIAN_COMMON_PACKAGES

# Compilers
  variables:
    <<: *base_vars

re:debian-stable:
  <<: *prerequisites
  stage: build
  image: debian:stable
  variables:
    <<: *base_vars
  script:
    - git submodule update --init
    - ./configure --user
    - make
    - make install