Skip to content

Commit 3b2392d

Browse files
authored
Merge pull request #160 from arnaud-m/feat-159
Remove progress output in github actions - close #159
2 parents 53067ca + d3beeff commit 3b2392d

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/CryptatorTest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs :
2020
restore-keys: |
2121
${{ runner.os }}-maven-
2222
- name: Test with Maven
23-
run: mvn test --file pom.xml
23+
run: mvn test --no-transfer-progress --file pom.xml
2424
- name: Extended test with Maven
25-
run: mvn test -Dtest=ExtensiveTesting --file pom.xml
25+
run: mvn test -Dtest=ExtensiveTesting --no-transfer-progress --file pom.xml

src/main/benchmarks/README.org

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,11 +222,11 @@ The word lists ~colors.txt~ and ~monsters.txt~ takes the most time by far (aroun
222222
#+END_SRC
223223

224224

225-
** Configure the algorithm
225+
** Configure algorithms
226226

227227
*** Addition
228228
#+BEGIN_SRC sh
229-
echo -v quiet --generate ADD -s BIGNUM > algorithms/ALL.dat
229+
echo -v quiet --generate ADD --solver BIGNUM > algorithms/ALL.dat
230230
#+END_SRC
231231

232232

@@ -240,6 +240,7 @@ The word lists ~colors.txt~ and ~monsters.txt~ takes the most time by far (aroun
240240
echo -v quiet --generate LMUL > algorithms/ALL.dat
241241
#+END_SRC
242242

243+
243244
* Solve
244245
** Create the solver
245246
*** Cryptator
@@ -294,7 +295,7 @@ Postprocess the output of the crypt solver.
294295
#+END_SRC
295296
Do not remove the content of the directory!
296297

297-
** Configure the algorithm
298+
** Configure algorithms
298299

299300
#+BEGIN_SRC sh
300301
ARGS=" -v verbose"

0 commit comments

Comments
 (0)