Add Linux 32bits target to CI
This commit is contained in:
parent
36fbc88c54
commit
c4e732e049
1 changed files with 20 additions and 0 deletions
20
.github/workflows/ci.yml
vendored
20
.github/workflows/ci.yml
vendored
|
@ -38,6 +38,26 @@ jobs:
|
|||
if: ${{ matrix.buildType == 'Release' }}
|
||||
run: |
|
||||
time make test262
|
||||
linux-32bits:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: jirutka/setup-alpine@v1
|
||||
with:
|
||||
arch: x86
|
||||
packages: "build-base make cmake"
|
||||
- name: build
|
||||
shell: alpine.sh {0}
|
||||
run: |
|
||||
make
|
||||
- name: stats
|
||||
shell: alpine.sh {0}
|
||||
run: |
|
||||
make stats
|
||||
- name: test
|
||||
shell: alpine.sh {0}
|
||||
run: |
|
||||
make test
|
||||
linux-examples:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
Loading…
Reference in a new issue