Skip to content

Commit c4e732e

Browse files
committed
Add Linux 32bits target to CI
1 parent 36fbc88 commit c4e732e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,26 @@ jobs:
3838
if: ${{ matrix.buildType == 'Release' }}
3939
run: |
4040
time make test262
41+
linux-32bits:
42+
runs-on: ubuntu-latest
43+
steps:
44+
- uses: actions/checkout@v3
45+
- uses: jirutka/setup-alpine@v1
46+
with:
47+
arch: x86
48+
packages: "build-base make cmake"
49+
- name: build
50+
shell: alpine.sh {0}
51+
run: |
52+
make
53+
- name: stats
54+
shell: alpine.sh {0}
55+
run: |
56+
make stats
57+
- name: test
58+
shell: alpine.sh {0}
59+
run: |
60+
make test
4161
linux-examples:
4262
runs-on: ubuntu-latest
4363
steps:

0 commit comments

Comments
 (0)