We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e94491c commit 1d48b23Copy full SHA for 1d48b23
2 files changed
.travis.yml
@@ -3,13 +3,19 @@ branches:
3
- master
4
language: node_js
5
dist: jammy
6
-os: linux-ppc64le
+arch:
7
+ - ppc64le
8
+ - s390x
9
cache:
10
npm: true
11
services:
12
- docker
13
node_js:
14
- 22
15
+addons:
16
+ apt:
17
+ packages:
18
+ - docker.io
19
env:
20
- >
21
JOB=test
@@ -18,7 +24,8 @@ env:
24
JOB=cross-test
25
DB2_VERSION=:11.5.9.0@sha256:77095d4e04cf4448c0257086afcb2c166193d718dc33441da3b949f97e21efd5
26
install: skip
-script: |
27
+script: |-
28
+ docker --version
22
29
case "$JOB" in
23
30
test)
31
./cicd/well-known/test-harness.sh
appveyor.yml
@@ -0,0 +1,12 @@
1
+branches:
2
+ only:
+ - master
+image: Visual Studio 2022
+environment:
+ NODEJS_VERSION:
+ - 22
+install:
+ - ps: Install-Product node $env:NODEJS_VERSION
+
+test_script:
+ - ./
0 commit comments