Skip to content
Snippets Groups Projects
.gitlab-ci.yml 5.34 KiB
Newer Older
##
## PeTrack - Software for tracking pedestrians movement in videos
## Copyright (C) 2010-2020 Forschungszentrum Jülich GmbH,
## Maik Boltes, Juliane Adrian, Ricardo Martin Brualla, Arne Graf, Paul Häger, Daniel Hillebrand,
## Deniz Kilic, Paul Lieberenz, Daniel Salden, Tobias Schrödter, Ann Katrin Seemann
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program.  If not, see <https://www.gnu.org/licenses/>.
##
d.kilic's avatar
d.kilic committed
stages:
d.kilic's avatar
d.kilic committed
  - build
  - test
###############################################################################
# Linux CI
###############################################################################
# Build environment for building and testing the program. Uses the Dockerfile
# from the repository
build_container:
  stage: build_environment
  image: 
    name: gcr.io/kaniko-project/executor:debug
    entrypoint: [""]
  script:
    - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
    - /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/container/arch/Dockerfile --destination $CI_REGISTRY_IMAGE:${CI_COMMIT_REF_SLUG}_linux
  rules:
    - changes:
        - container/arch/Dockerfile
d.kilic's avatar
d.kilic committed

# Build petrack and petrack unit_tests
build_linux:
  image: $CI_REGISTRY_IMAGE:${CI_COMMIT_REF_SLUG}_linux
  stage: build
  script:
    - mkdir build
    - cd build
    - cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_UNIT_TESTS=ON -G Ninja
    - cmake --build .
  artifacts:
    paths:
      - "./build/"
    expire_in: 2 hrs

# Execute unit tests
unit_test_linux:
  image: $CI_REGISTRY_IMAGE:${CI_COMMIT_REF_SLUG}_linux
  stage: test
  script:
    - cd build/tests/unit_test
    - ./petrack_tests -platform offscreen -r junit -o unit_test_report.xml
  artifacts:
    when: always
    paths:
        - build/tests/unit_test/unit_test_report.xml
    reports:
      junit: "build/tests/unit_test/unit_test_report.xml"

# Execute regression tests
regression_test_linux:
  image: $CI_REGISTRY_IMAGE:${CI_COMMIT_REF_SLUG}_linux
  stage: test
  script:
    - cd tests/regression_test/tests
    - python -m pytest --path=../../../build/petrack --junitxml=pytest_report.xml >> "RegressionTestLog.txt"
  artifacts:
    when: on_failure
    paths:
      - "tests/regression_test/tests/RegressionTestLog.txt"
    reports:
      junit: "tests/regression_test/tests/pytest_report.xml"

###############################################################################
# Windows CI
###############################################################################
# Build petrack and petrack unit_tests
d.kilic's avatar
d.kilic committed
build_windows:
d.kilic's avatar
d.kilic committed
  stage: build
  tags:
    - windows
d.kilic's avatar
d.kilic committed
  script:
    - mkdir -Force build
    - $env:Path += ";C:\Program Files\CMake\bin"
    - cmake -G"MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DBUILD_UNIT_TESTS=ON -DUSE_3RD_PARTY=ON ..
    - cmake --build . -- -j6
  artifacts:
    paths:
      - "./build/petrack.exe"
      - "./build/tests/unit_test/petrack_tests.exe"
d.kilic's avatar
d.kilic committed
  stage: test
  tags:
    - windows
  script:
    - cd build/tests/unit_test
    - ./petrack_tests.exe -r junit -o unit_test_report.xml
d.kilic's avatar
d.kilic committed
  artifacts:
d.kilic's avatar
d.kilic committed
    paths:
        - build/tests/unit_test/unit_test_report.xml
d.kilic's avatar
d.kilic committed
    reports:
      junit: "build/tests/unit_test/unit_test_report.xml"
d.kilic's avatar
d.kilic committed
  needs: ["build_windows"]
# Ggf. muss man nicht in den Ordner der Testskripte verzweigen, da PyTest auch rekusrsiv in Unterorndern nach tests sucht
regression_test_windows:
  stage: test
  tags:
    - windows
  script:
    - cd tests/regression_test/tests
    - python -m pytest --junitxml=pytest_report.xml | Tee-Object -FilePath "RegressionTestLog.txt"
      - "tests/regression_test/tests/RegressionTestLog.txt"
      junit: "tests/regression_test/tests/pytest_report.xml"
  needs: ["build_windows"]

build_windows_installer:
  stage: build_installer
  rules:
    - if: $CI_PIPELINE_SOURCE == "schedule"
      when: never
    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
  tags:
    - windows
  script:
    - mkdir -Force build
    - $env:Path += ";C:\Program Files\CMake\bin"
    - cd build
    - Remove-Item -Force -Recurse -Path *
    - cmake -G"MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DBUILD_UNIT_TESTS=ON -DUSE_3RD_PARTY=ON ..
    - cpack -C Release
  artifacts:
    paths:
      - "build/petrack-installer-*"
    expire_in: 2hrs

make_release:
  image: alpine
  stage: deploy
  rules:
    - if: $CI_PIPELINE_SOURCE == "schedule"
      when: never
    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
  needs: ["build_windows_installer"]
  script:
    - apk --no-cache add curl
    - cd build
    - winInst=$(echo petrack-installer-*)
    - curl -k -T $winInst -u "${SCIEBO_TOKEN}:" https://fz-juelich.sciebo.de/public.php/webdav/$winInst