-
-
Notifications
You must be signed in to change notification settings - Fork 0
113 lines (90 loc) · 2.62 KB
/
test-cross-platform.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
name: test-cross-platform
on:
push:
branches: [main]
paths-ignore:
- '**/*.md'
pull_request:
branches: [main]
paths-ignore:
- '**/*.md'
jobs:
github-actions-runner-images:
strategy:
matrix:
runner-image:
- macos-15
- macos-14
- macos-13
- macos-12
- ubuntu-24.04
- ubuntu-22.04
- windows-2022
node-version:
- 22
- 20
- 18
- 16
runs-on: ${{ matrix.runner-image }}
steps:
- name: Set up checkout
uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Set up node_modules
run: npm ci
- name: Debug GLIBC version
if: runner.os == 'Linux'
run: ldd --version
- name: Build
run: npm run build
- name: Chmod
run: npm run postinstall
- name: Debug Permission
if: runner.os != 'Windows'
run: ls -alR build/bin
- name: Test
run: npx clang-format --version
docker-images:
strategy:
matrix:
docker:
- platform: arm/v7
ubuntu-image: arm32v7
node-name: arm
- platform: arm64/v8
ubuntu-image: arm64v8
node-name: arm64
- platform: ppc64le
ubuntu-image: ppc64le
node-name: ppc64
- platform: s390x
ubuntu-image: s390x
node-name: s390x
runs-on: ubuntu-22.04
steps:
- name: Set up checkout
uses: actions/checkout@v4
- name: Set up QEMU
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- name: Docker run background
run: docker run -d --name ${{ matrix.docker.node-name }} --platform linux/${{ matrix.docker.platform }} ${{ matrix.docker.ubuntu-image }}/ubuntu:22.04 tail -f /dev/null
- name: Copy file to Docker container
run: docker cp ./src/bin/linux-${{ matrix.docker.node-name }}/clang-format ${{ matrix.docker.node-name }}:/
- name: Docker exec
run: |
docker exec ${{ matrix.docker.node-name }} /bin/bash -c "
echo ---Debug uname -m--- &&
uname -m &&
echo ---Debug pwd--- &&
pwd &&
echo ---Debug ls -l /clang-format--- &&
ls -l /clang-format &&
echo ---Chmod--- &&
chmod 755 /clang-format &&
ls -l /clang-format &&
echo ---Test--- &&
/clang-format --version
"