-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cirrus.yml
149 lines (140 loc) · 4.92 KB
/
.cirrus.yml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
linux_task:
container:
image: ubuntu:20.10
install_script:
- apt-get update
- apt-get install -y zsh
script:
- zsh ./script.sh
osxbrew_task:
osx_instance:
image: catalina-base
install_script:
- brew install zsh
script:
- zsh ./script.sh
freebsd_task:
freebsd_instance:
image_family: freebsd-12-2
install_script:
- pkg install -y zsh
script:
- zsh ./script.sh
# linux_task:
# container:
# image: debian
# install_script:
# - apt-get update
# - apt-get install -y tree bash busybox dash ksh mksh posh yash zsh
# - ln -s /bin/busybox /usr/local/bin/ash
# env:
# - ALLOW_CREATION_TO_THE_ROOT_DIRECTORY: 1
# script:
# - ./script.sh
# - ./test.sh sh
# - ./test.sh ash
# - ./test.sh bash
# - ./test.sh dash
# - ./test.sh ksh
# - ./test.sh lksh
# - ./test.sh mksh
# - ./test.sh posh
# - ./test.sh yash
# - ./test.sh zsh
# freebsd_task:
# freebsd_instance:
# image_family: freebsd-12-1
# install_script:
# - pkg install -y tree coreutils dash bash ksh93 mksh oksh yash zsh
# env:
# - ALLOW_CREATION_TO_THE_ROOT_DIRECTORY: 1
# script:
# - ./script.sh
# - ./test.sh sh
# - ./test.sh bash
# - ./test.sh dash
# - ./test.sh ksh
# - ./test.sh mksh
# - ./test.sh oksh
# - ./test.sh yash
# - ./test.sh zsh
# osx_task:
# osx_instance:
# image: catalina-base
# install_script:
# - brew install tree coreutils
# script:
# - mkdir -p ~/chroot/dev ~/chroot/usr
# - sudo cp -a -X /bin /sbin ~/chroot/
# - sudo cp -a -X /usr/bin /usr/lib /usr/local ~/chroot/usr/
# - sudo cp -a -X ./ ~/chroot/root
# - sudo chroot ~/chroot /root/script.sh
# - sudo chroot ~/chroot sh -c 'ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 /root/test.sh sh'
# - sudo chroot ~/chroot sh -c 'ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 /root/test.sh bash'
# - sudo chroot ~/chroot sh -c 'ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 /root/test.sh ksh'
# - sudo chroot ~/chroot sh -c 'ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 /root/test.sh zsh'
# osxbrew_task:
# osx_instance:
# image: catalina-base
# install_script:
# - brew install tree coreutils dash bash ksh mksh yash zsh
# script:
# - mkdir -p ~/chroot/dev ~/chroot/usr
# - sudo cp -a -X /bin /sbin ~/chroot/
# - sudo cp -a -X /usr/bin /usr/lib /usr/local ~/chroot/usr/
# - sudo cp -a -X ./ ~/chroot/root
# - sudo chroot ~/chroot /root/script.sh
# - sudo chroot ~/chroot sh -c 'ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 /root/test.sh sh'
# - sudo chroot ~/chroot sh -c 'ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 /root/test.sh bash'
# - sudo chroot ~/chroot sh -c 'ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 /root/test.sh dash'
# - sudo chroot ~/chroot sh -c 'ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 /root/test.sh ksh'
# - sudo chroot ~/chroot sh -c 'ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 /root/test.sh mksh'
# - sudo chroot ~/chroot sh -c 'ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 /root/test.sh yash'
# - sudo chroot ~/chroot sh -c 'ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 /root/test.sh zsh'
# gitbash_task:
# windows_container:
# image: cirrusci/windowsservercore:2019
# os_version: 2019
# env:
# - PATH: $ProgramFiles\Git\bin;$PATH
# - MSYS: winsymlinks:lnk
# script:
# - sh -c "./script.sh"
# - sh -c "ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 ./test.sh sh"
# - sh -c "ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 ./test.sh bash"
# - sh -c "ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 ./test.sh dash"
# msys_task:
# windows_container:
# image: cirrusci/windowsservercore:2019
# os_version: 2019
# env:
# - PATH: C:\tools\msys64\usr\bin;$PATH
# - MSYS: winsymlinks:lnk
# install_script:
# - choco install -y msys2
# - pacman -S --noconfirm tree dash bash mksh zsh
# script:
# - sh -c "./script.sh"
# - sh -c "ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 ./test.sh sh"
# - sh -c "ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 ./test.sh dash"
# - sh -c "ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 ./test.sh bash"
# - sh -c "ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 ./test.sh mksh"
# - sh -c "ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 ./test.sh zsh"
# cygwin_task:
# windows_container:
# image: cirrusci/windowsservercore:2019
# os_version: 2019
# env:
# - PATH: C:\tools\cygwin\bin;$PATH
# - CYGWIN: winsymlinks:lnk
# install_script:
# - choco install -y cygwin cyg-get
# - cyg-get tree dash bash mksh posh zsh
# script:
# - sh -c "./script.sh"
# - sh -c "ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 ./test.sh sh"
# - sh -c "ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 ./test.sh dash"
# - sh -c "ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 ./test.sh bash"
# - sh -c "ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 ./test.sh mksh"
# - sh -c "ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 ./test.sh posh"
# - sh -c "ALLOW_CREATION_TO_THE_ROOT_DIRECTORY=1 ./test.sh zsh"