Skip to content

Commit

Permalink
Update build-and-test.yml
Browse files Browse the repository at this point in the history
Build is failing consistently with

Run sudo apt-get install libncurses5
Reading package lists...
Building dependency tree...
Reading state information...
E: Unable to locate package libncurses5
Error: Process completed with exit code 100.

Try to fix by following this online post: https://askubuntu.com/questions/1252062/how-to-install-libncurses-so-5-in-ubuntu-20-04
  • Loading branch information
jsdonn authored Jan 14, 2025
1 parent 62f596e commit 5fe6e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
java-version: 1.8
- name: Install lib
run: sudo apt-get install libncurses5
run: sudo apt-get install libncurses5 libncurses5:i386

- name: Gradle build (and test)
run: ./gradlew build
Expand Down

0 comments on commit 5fe6e93

Please sign in to comment.