Skip to content

Commit 1d48b23

Browse files
committed
ci(travis): add test docker command
Signed-off-by: Rifa Achrinza <25147899+achrinza@users.noreply.github.com>
1 parent e94491c commit 1d48b23

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

.travis.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,19 @@ branches:
33
- master
44
language: node_js
55
dist: jammy
6-
os: linux-ppc64le
6+
arch:
7+
- ppc64le
8+
- s390x
79
cache:
810
npm: true
911
services:
1012
- docker
1113
node_js:
1214
- 22
15+
addons:
16+
apt:
17+
packages:
18+
- docker.io
1319
env:
1420
- >
1521
JOB=test
@@ -18,7 +24,8 @@ env:
1824
JOB=cross-test
1925
DB2_VERSION=:11.5.9.0@sha256:77095d4e04cf4448c0257086afcb2c166193d718dc33441da3b949f97e21efd5
2026
install: skip
21-
script: |
27+
script: |-
28+
docker --version
2229
case "$JOB" in
2330
test)
2431
./cicd/well-known/test-harness.sh

appveyor.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
branches:
2+
only:
3+
- master
4+
image: Visual Studio 2022
5+
environment:
6+
NODEJS_VERSION:
7+
- 22
8+
install:
9+
- ps: Install-Product node $env:NODEJS_VERSION
10+
11+
test_script:
12+
- ./

0 commit comments

Comments
 (0)