Commit c9c1c695 authored by French, Robert's avatar French, Robert
Browse files

Configure CI

parent a128bc81
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
*.exe
*.pyc

.gitlab-ci.yaml

0 → 100644
+43 −0
Original line number Diff line number Diff line
stages:
- build
- run

.build_template: &build
  stage: build
  script:
    - ./breakable -t build_hello_world

.run_template: &run
  stage: run
  script:
    - ./hello_world.exe

.mac_template: &mac
  variables:
    COMPILERS: gcc,clang
  tags:
    - mac
  environment: mac

.xk7_template: &xk7
  variables:
    COMPILERS:
  tags:
    - xk7
  environment: xk7

mac_build:
  <<: *mac
  <<: *build

mac_run:
  <<: *mac
  <<: *run

xk7_build:
  <<: *xk7
  <<: *build

xk7_run:
  <<: *xk7
  <<: *run