ci: install meson before using it in publish-docker-image
This commit is contained in:
parent
dc5d5f44c2
commit
af1b15e6b7
1 changed files with 5 additions and 1 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
|
@ -767,8 +767,12 @@ jobs:
|
|||
if: github.event_name == 'push'
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get --assume-yes install python3-wheel python3-setuptools python3-pip && pip3 install --user meson
|
||||
- name: Download subprojects
|
||||
run: meson subprojects download capstone-bundled sdb tree-sitter
|
||||
run: |
|
||||
export PATH=${HOME}/.local/bin:${PATH}
|
||||
meson subprojects download capstone-bundled sdb tree-sitter
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
|
|
|
|||
Loading…
Reference in a new issue