Skip to content

Commit

Permalink
ci: install gcc to compile primitives
Browse files Browse the repository at this point in the history
  • Loading branch information
JulioLoayzaM committed Jun 12, 2024
1 parent a5d635d commit ae59582
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ compile-primitives: # Compile primitives written in C.

compile-primitives-ci: # Compile primitives written in C.
@echo "[+] Compiling primitives (CI)"
sudo apt-get install -y --no-install-recommends pandoc texlive texlive-latex-extra
sudo apt-get install -y --no-install-recommends pandoc gcc
cd crypto_condor/primitives && $(MAKE) all -j4
@echo

Expand Down
2 changes: 1 addition & 1 deletion crypto_condor/primitives/_testu01/qbmake.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

CC="{CC:-cc}"
CC="{CC:-/usr/bin/cc}"
set -e
(
cd testu01
Expand Down

0 comments on commit ae59582

Please sign in to comment.