Install deps for daily workflow

Former-commit-id: 9b98c9edd3e8c9316514b7f9e0efc7a9f8d17851
This commit is contained in:
John Sully 2020-05-24 11:19:53 -04:00
parent 7630b63f06
commit 6b93792f8f

View File

@ -11,7 +11,9 @@ jobs:
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: make - name: make
run: make run: |
sudo apt-get -y install uuid-dev libcurl4-openssl-dev
make
- name: test - name: test
run: | run: |
sudo apt-get install tcl8.5 sudo apt-get install tcl8.5
@ -25,7 +27,9 @@ jobs:
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: make - name: make
run: make MALLOC=libc run: |
sudo apt-get -y install uuid-dev libcurl4-openssl-dev
make MALLOC=libc
- name: test - name: test
run: | run: |
sudo apt-get install tcl8.5 sudo apt-get install tcl8.5
@ -39,7 +43,9 @@ jobs:
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: make - name: make
run: make valgrind run: |
sudo apt-get -y install uuid-dev libcurl4-openssl-dev
make valgrind
- name: test - name: test
run: | run: |
sudo apt-get install tcl8.5 valgrind -y sudo apt-get install tcl8.5 valgrind -y