Run arm CI builds

Former-commit-id: 17795fd5ce5fed0706769b37b3d11104b575fc37
This commit is contained in:
John Sully 2020-04-22 02:13:02 -04:00 committed by GitHub
parent f34e25393e
commit 2909b19cdb

View File

@ -10,7 +10,20 @@ jobs:
- name: make
run: |
sudo apt-get install uuid-dev libcurl4-openssl-dev
make
make -j2
- name: test
run: |
sudo apt-get install tcl8.5
./runtest --clients 2 --verbose
test-ubuntu-arm:
runs-on: [self-hosted, linux, arm]
steps:
- uses: actions/checkout@v1
- name: make
run: |
sudo apt-get install uuid-dev libcurl4-openssl-dev
make -j4
- name: test
run: |
sudo apt-get install tcl8.5
@ -20,7 +33,7 @@ jobs:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v1
- name: make
- name: make -j2
run: |
sudo apt-get install uuid-dev libcurl4-openssl-dev
make
@ -30,4 +43,4 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: make
run: make
run: make -j2