Fix apt-get install command, try without sudo.

This commit is contained in:
Jesper Louis Andersen
2021-06-15 14:29:32 +02:00
parent 0b8abb95d5
commit 73a6462ef3
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -17,7 +17,8 @@ jobs: ci: {
} }
steps: [ steps: [
{uses: "actions/checkout@v2"}, {uses: "actions/checkout@v2"},
{run: "sudo apt get instal libsodium-dev"}, [{name: "Install libsodium"},
{run: "apt-get install -y libsodium-dev"}],
{run: "make compile"}, {run: "make compile"},
{run: "make tests"}] {run: "make tests"}]
} }
+2 -1
View File
@@ -26,6 +26,7 @@ jobs:
- ubuntu-latest - ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: sudo apt get instal libsodium-dev - - name: Install libsodium
- run: apt-get install -y libsodium-dev
- run: make compile - run: make compile
- run: make tests - run: make tests