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

Commit c0b5869

Browse files
committed
Fixed gitlab CI source globbing
1 parent 6489f77 commit c0b5869

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.gitlab-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ldc-build:
2121
- which demo-plugin
2222
only:
2323
changes:
24-
- source/**
24+
- source/**/*
2525
- system_tests/**
2626
artifacts:
2727
paths:
@@ -31,7 +31,7 @@ ldc-unit-tests:
3131
stage: test
3232
only:
3333
changes:
34-
- source/**
34+
- source/**/*
3535
- system_tests/**
3636
script:
3737
- dub test --build=release --compiler=ldc2 --arch=x86_64
@@ -40,7 +40,7 @@ ldc-system-tests:
4040
stage: test
4141
only:
4242
changes:
43-
- source/**
43+
- source/**/*
4444
- system_tests/**
4545
script:
4646
- nvim --version
@@ -59,7 +59,7 @@ dmd-build:
5959
stage: build
6060
only:
6161
changes:
62-
- source/**
62+
- source/**/*
6363
- system_tests/**
6464
script:
6565
- dmd --version
@@ -73,7 +73,7 @@ dmd-unit-tests:
7373
stage: test
7474
only:
7575
changes:
76-
- source/**
76+
- source/**/*
7777
- system_tests/**
7878
script:
7979
- dub test --build=release --arch=x86_64

0 commit comments

Comments
 (0)