Skip to content

Commit

Permalink
Add missing sudo in ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wargio committed Oct 11, 2022
1 parent cf5d59c commit 9abc602
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -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
working-directory: ./c

0 comments on commit 9abc602

Please sign in to comment.