aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorGiovanni <[email protected]>2022-10-12 00:27:22 +0200
committerGitHub <[email protected]>2022-10-12 00:27:22 +0200
commit9abc602848cea28c5d4a04b4d777b81f2196707b (patch)
tree4b4484110c03d18b48c571618d79ec8ef8c568c0 /.github/workflows
parentcf5d59cd4357d06f3e9c64f6ea652d5378ba5c35 (diff)
Add missing sudo in ci.yml
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6b2bf71..2147cbd 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -240,10 +240,10 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: install TCC
- run: apt-get install -y tcc
+ run: sudo apt-get install -y tcc
- name: compile
run: >
tcc -shared -O3 -o libblake3.so \
-DBLAKE3_NO_SSE2 -DBLAKE3_NO_SSE41 -DBLAKE3_NO_AVX2 -DBLAKE3_NO_AVX512 \
blake3.c blake3_dispatch.c blake3_portable.c
- working-directory: ./c \ No newline at end of file
+ working-directory: ./c