summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: 03687232cbadb6da447b1a80b0741abd1d3330bb (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                                             
        





                                                                   
                                


                              



                                                                      
                   
                             




                     
                             
         
                                               

                                                                              

                      
                         


                  



                                      
                 
                             




                     
                             
         

                                                                              

                      
                         


                  



                                      








                                   

                                                                              

                       






                                                  




                                                                 
                             


                     
                                      

                  
                                 

                                                                             
                   

               

               



                            
                                         




                                                                             
                   

               

                                                             


                     
                                

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

variables: &base_vars
  DEBIAN_COMMON_PACKAGES: make git gcc g++
  # Depth of clone. If no tag is made after this many commits, then
  # the git describe call and version header generation will fail.
  GIT_DEPTH: 100 # Will break again eventually.
  GIT_SUBMODULE_STRATEGY: normal

.prerequisites: &prerequisites
  before_script:
    - uname -a
    - apt-get update
    - apt-get install -y -qq $INSTALL_PACKAGES $DEBIAN_COMMON_PACKAGES

# Active server OS?
re:ubuntu1804-attoconf:build:
  <<: *prerequisites
  stage: build
  image: ubuntu:18.04
  variables:
    <<: *base_vars
    INSTALL_PACKAGES: python3
  script:
    - echo "Building TMW Athena $CI_BUILD_NAME"
    - git fetch -t
    - printf "Building TMW Athena version %s\n" "$(git  describe --tags HEAD)"
    - mkdir build-atto
    - cd build-atto
    - ../configure --user
    - make
    - whoami
    - make install
  artifacts: # required for test stage
    untracked: true
    expire_in: 30 mins

# Next server OS?
re:ubuntu2204-attoconf:build:
  <<: *prerequisites
  stage: build
  image: ubuntu:22.04
  variables:
    <<: *base_vars
    INSTALL_PACKAGES: python3
  script:
    - git fetch -t
    - printf "Building TMW Athena version %s\n" "$(git  describe --tags HEAD)"
    - mkdir build-atto
    - cd build-atto
    - ../configure --user
    - make
    - whoami
    - make install
  artifacts: # required for test stage
    untracked: true
    expire_in: 30 mins

# Next server OS, with cmake
re:ubuntu2204:build:
  <<: *prerequisites
  stage: build
  image: ubuntu:22.04
  variables:
    <<: *base_vars
    INSTALL_PACKAGES: python3 cmake
  script:
    - git fetch -t
    - printf "Building TMW Athena version %s\n" "$(git  describe --tags HEAD)"
    - mkdir build-cmake
    - cd build-cmake
    - cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local ..
    - make
    - whoami
    - make install
  artifacts: # required for test stage
    untracked: true
    expire_in: 30 mins


# Disabled. fails with:
# (1) GDB failing to resolve a type
# (2) /usr/bin/ld: Dwarf Error: Can't find .debug_ranges section.
.re:ubuntu1804-attoconf:test:
  <<: *prerequisites
  stage: test
  image: ubuntu:18.04
  needs: ["ubuntu1804-attoconf:build"]
  variables:
    <<: *base_vars
    INSTALL_PACKAGES: python3 gdb
  script:
    - printf "Testing TMW Athena version %s\n" "$(git  describe --tags HEAD)"
    - cd build-atto
    - make test


# Enabled tests
re:ubuntu2204-attoconf:test:
  <<: *prerequisites
  stage: test
  image: ubuntu:22.04
  needs: ["re:ubuntu2204-attoconf:build"]
  variables:
    <<: *base_vars
    INSTALL_PACKAGES: python3 gdb
  script:
    - printf "Testing TMW Athena version %s\n" "$(git  describe --tags HEAD)"
    - cd build-atto
    - make test

# Disabled. Tests are not supported yet by the CMake project.
.re:ubuntu2204:test:
  <<: *prerequisites
  stage: test
  image: ubuntu:22.04
  needs: ["re:ubuntu2204:build"]
  variables:
    <<: *base_vars
    INSTALL_PACKAGES: python3 gdb
  script:
    - printf "Testing TMW Athena version %s\n" "$(git  describe --tags HEAD)"
    - cd build-cmake
    - make test