Skip to content

Commit

Permalink
Fix gitlab tests
Browse files Browse the repository at this point in the history
  • Loading branch information
magic53 committed Aug 30, 2018
1 parent f372752 commit c64104d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ build_linux:
test_linux:
stage: test
script:
- "ls \"$CI_PROJECT_DIR/linux/*.tar.gz\" 1> /dev/null 2>&1"
- "ls \"$CI_PROJECT_DIR/linux/*.AppImage\" 1> /dev/null 2>&1"
- "ls \"$CI_PROJECT_DIR/linux/*.deb\" 1> /dev/null 2>&1"
- "[[ \"$CI_PROJECT_DIR/linux/*.tar.gz\" =~ \\.tar.gz$ ]]"
- "[[ \"$CI_PROJECT_DIR/linux/*.AppImage\" =~ \\.AppImage$ ]]"
- "[[ \"$CI_PROJECT_DIR/linux/*.deb\" =~ \\.deb$ ]]"

build_win:
stage: build
Expand All @@ -44,8 +44,8 @@ build_win:
test_win:
stage: test
script:
- "ls \"$CI_PROJECT_DIR/win/*.exe\" 1> /dev/null 2>&1"
- "ls \"$CI_PROJECT_DIR/win/*.zip\" 1> /dev/null 2>&1"
- "[[ \"$CI_PROJECT_DIR/win/*.exe\" =~ \\.exe$ ]]"
- "[[ \"$CI_PROJECT_DIR/win/*.zip\" =~ \\.zip$ ]]"

build_mac:
stage: build
Expand All @@ -65,4 +65,4 @@ build_mac:
test_mac:
stage: test
script:
- "ls \"$CI_PROJECT_DIR/mac/*.zip\" 1> /dev/null 2>&1"
- "[[ \"$CI_PROJECT_DIR/mac/*.zip\" =~ \\.zip$ ]]"

0 comments on commit c64104d

Please sign in to comment.