File tree 5 files changed +40
-0
lines changed
5 files changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ language : ruby
2
+ dist : bionic
3
+ arch : ppc64le
4
+ os : linux
5
+
6
+ before_install :
7
+ - .travis/setup_${TRAVIS_CPU_ARCH}_env.sh
8
+
9
+ install :
10
+ - .travis/install_${TRAVIS_CPU_ARCH}_env.sh
11
+
12
+ script :
13
+ - .travis/build_${TRAVIS_CPU_ARCH}.sh
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -ev
4
+
5
+ # Start Echo API
6
+ cd ..
7
+ bundle exec rackup --port 3000 --host 0.0.0.0 --env production &
8
+
9
+ # Sleep
10
+ sleep 10
11
+
12
+ # test Echo API
13
+ curl --fail http://0.0.0.0:3000/test
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -ev
4
+
5
+ bundle config --local set path ' vendor/bundle'
6
+ bundle lock --add-platform powerpc64le-linux
7
+
8
+ bundle check || bundle install --jobs=3 --retry=3
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -ev
4
+
5
+ gem install bundler --version 2.2.4
Original file line number Diff line number Diff line change 37
37
tilt (2.0.10 )
38
38
39
39
PLATFORMS
40
+ powerpc64le-linux
40
41
ruby
41
42
x86_64-linux
42
43
You can’t perform that action at this time.
0 commit comments