Skip to content
Snippets Groups Projects

Temporarily disable stat calls

Merged Ben Gamari requested to merge wip/get-it-working into master
3 files
+ 63
2
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 26
1
stages:
- build
- test
variables:
GIT_SUBMODULE_STRATEGY: recursive
MSYS32: /c/msys32
MSYS64: /c/msys64
build:
stage: build
tags:
- x86_64-windows
- new-x86_64-windows
- test
before_script:
- git -C ghc-jailbreak clean -ffdx
@@ -16,3 +21,23 @@ build:
expire_in: 1 week
paths:
- tarballs
.test:
stage: test
tags:
- new-x86_64-windows
- test
dependencies:
- build
script:
- bash test.sh $ARCH
test-x86_64:
extends: .test
variables:
ARCH: x86_64
test-i686:
extends: .test
variables:
ARCH: i686
Loading