We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dba2c45 commit c44bc47Copy full SHA for c44bc47
.github/workflows/common_tag_workflow.yml
@@ -101,13 +101,13 @@ jobs:
101
go-version: 1.17
102
103
- name: install deps
104
- if ${{ !inputs.need_ffi }}
+ if ${{ inputs.need_ffi != true }}
105
run: |
106
sudo apt-get update
107
sudo apt-get install ncftp
108
109
- name: install more deps
110
- if ${{ inputs.need_ffi }}
+ if ${{ inputs.need_ffi == true }}
111
112
113
sudo apt-get -o Acquire::Retries=3 install make ncftp mesa-opencl-icd ocl-icd-opencl-dev gcc git bzr jq pkg-config curl clang build-essential hwloc libhwloc-dev wget -y && sudo apt upgrade -y
0 commit comments