Skip to content

Commit 1e0e2c2

Browse files
committed
New upstream version 2.7.0~preview2
1 parent 5b65d75 commit 1e0e2c2

File tree

3,274 files changed

+172890
-83852
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,274 files changed

+172890
-83852
lines changed

.drone.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
kind: pipeline
3+
type: docker
4+
name: arm32
5+
platform:
6+
os: linux
7+
arch: arm
8+
steps:
9+
- name: test
10+
image: ruby:2.5-stretch
11+
commands:
12+
- uname -m
13+
- apt-get -yq update
14+
- apt-get -yq install software-properties-common
15+
- apt-get -yq install bison sudo
16+
# workaround ipv6 localhost
17+
- ruby -e "hosts = File.read('/etc/hosts').sub(/^::1\s*localhost.*$/, ''); File.write('/etc/hosts', hosts)"
18+
# create user
19+
- useradd --shell /bin/bash --create-home test && chown -R test:test .
20+
# configure
21+
- /usr/bin/sudo -H -u test -- bash -c 'autoconf && ./configure --disable-install-doc --prefix=/tmp/ruby-prefix'
22+
# make all install
23+
- /usr/bin/sudo -H -u test -- make -j$(nproc) all install
24+
# make test
25+
- /usr/bin/sudo -H -u test -- make test
26+
# make test-spec
27+
- /usr/bin/sudo -H -u test -- make test-spec
28+
# make test-all
29+
- /usr/bin/sudo -H -u test -- make test-all
30+
failure: ignore # `make test` is failing on arm32
31+
trigger:
32+
branch:
33+
- master

.revision.time

Whitespace-only changes.

.rspec_parallel

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--format progress
2+
--format ParallelTests::RSpec::RuntimeLogger --out tmp/parallel_runtime_rspec.log

0 commit comments

Comments
 (0)