Skip to content
Snippets Groups Projects
.gitlab-ci.yml 728 B
Newer Older
  • Learn to ignore specific revisions
  • image: "debian"
    
    build:
        stage: build
        before_script:
            - apt update -qq && apt install -y -qq gcc-arm-none-eabi python-pip
            - pip install crc16
        script:
            - cd bootloader
            - make
            - cd ..
            - cd Hello_World
            - ./build_image
            - cd ..
            - cd Hello_World_FreeRTOS
            - ./build_image
            - cd ..
            - cd ble
            - ./build_image
            - cd ..
            - cd bmatest
            - ./build_image
            - cd ..
            - cd bmetest
            - ./build_image
            - cd ..
            - cd ecgtest
            - ./build_image
            - cd ..
            - cd imutest
            - ./build_image
            - cd ..
            - cd ips
            - ./build_image
            - cd ..