Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
Fixed gitlab CI source globbing
Browse files Browse the repository at this point in the history
  • Loading branch information
viniarck committed Jan 8, 2019
1 parent 6489f77 commit c0b5869
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ldc-build:
- which demo-plugin
only:
changes:
- source/**
- source/**/*
- system_tests/**
artifacts:
paths:
Expand All @@ -31,7 +31,7 @@ ldc-unit-tests:
stage: test
only:
changes:
- source/**
- source/**/*
- system_tests/**
script:
- dub test --build=release --compiler=ldc2 --arch=x86_64
Expand All @@ -40,7 +40,7 @@ ldc-system-tests:
stage: test
only:
changes:
- source/**
- source/**/*
- system_tests/**
script:
- nvim --version
Expand All @@ -59,7 +59,7 @@ dmd-build:
stage: build
only:
changes:
- source/**
- source/**/*
- system_tests/**
script:
- dmd --version
Expand All @@ -73,7 +73,7 @@ dmd-unit-tests:
stage: test
only:
changes:
- source/**
- source/**/*
- system_tests/**
script:
- dub test --build=release --arch=x86_64

0 comments on commit c0b5869

Please sign in to comment.