Commit edf5fce4 authored by Robert Izzard's avatar Robert Izzard
Browse files

Update .gitlab-ci.yml file with build and test

parent d3e0db1f
Loading
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -8,8 +8,6 @@ stages: # List of stages for jobs, and their order of execution

build-gcc:       # This job runs in the build stage, which runs first.
  stage: build
  tags: 
    - build-tag
  script:
    - echo "Installing packages"
    - apt-get update && apt-get install -y gawk gcc git perl-base sed meson ninja-build 
@@ -23,8 +21,6 @@ build-gcc: # This job runs in the build stage, which runs first.

test-cdict:   # This job runs in the test stage.
  stage: test    # It only starts when the job in the build stage completes successfully.
  tags: 
    - test-tag
  dependencies:
    - build-gcc
  script: