Browse Source

Update .gitlab-ci.yml file

remotes/origin/feature
fdai7782 11 months ago
parent
commit
3992d1d537
  1. 24
      .gitlab-ci.yml

24
.gitlab-ci.yml

@ -0,0 +1,24 @@
# use the official gcc image, based on debian
# can use versions as well, like gcc:5.2
# see https://hub.docker.com/_/gcc/
image: gcc
variables:
RUBY_VERSION: "2.x" # Adjust version as needed
before_script:
- apt-get update -qy
- apt-get install -y ruby
- gem install ceedling
build:
stage: build
script:
- ceedling new .
- ceedling clobber # Clean previous build artifacts
- ceedling compile
test:
stage: test
script:
- ceedling test:all
Loading…
Cancel
Save