forked from fastlane/fastlane
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappveyor.yml
More file actions
50 lines (38 loc) · 1002 Bytes
/
appveyor.yml
File metadata and controls
50 lines (38 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# https://www.appveyor.com/docs/appveyor-yml/
version: "{build}"
# https://www.appveyor.com/docs/windows-images-software/
image: 'Visual Studio 2019'
# branches to build
branches:
# allowlist
only:
- master
# Do not build on tags (GitHub and BitBucket)
skip_tags: true
# Do not build additional commits to feature branch with open Pull Requests
skip_branch_with_pr: true
init:
- git config --global core.autocrlf true
cache:
- vendor/bundle
# cloning the repository happens here
install:
- bundle install
environment:
LC_ALL: en_US.UTF-8
LANG: en_US.UTF-8
FASTLANE_ITUNES_TRANSPORTER_PATH: C:/tmp
before_test:
- ruby -v
- which ruby
- gem -v
- bundle -v
- which iconv
- which git
- git --version
build: off
test_script:
# Uncomment the first line and comment the second one to debug failing tests
# on Windows (some tests might fail with this).
# - cmd /V /C "set DEBUG=1 && bundle exec fastlane execute_tests"
- bundle exec fastlane execute_tests