summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: b0aae2fe533d72f655e1355246ca584747778d76 (plain) (tree)
1
2
3
4
5
6




                                                             
                                                 






                                                                      

                             




                  
                    

                    
                     






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

variables: &base_vars
  DEBIAN_COMMON_PACKAGES: make python 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
    - apt-cache policy python
    - apt-cache search python

# Compilers
  variables:
    <<: *base_vars

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