Fix apt-get install command, try without sudo.
This commit is contained in:
parent
0b8abb95d5
commit
73a6462ef3
3
.github/workflows/ci.cue
vendored
3
.github/workflows/ci.cue
vendored
@ -17,7 +17,8 @@ jobs: ci: {
|
||||
}
|
||||
steps: [
|
||||
{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 tests"}]
|
||||
}
|
||||
|
3
.github/workflows/ci.yaml
vendored
3
.github/workflows/ci.yaml
vendored
@ -26,6 +26,7 @@ jobs:
|
||||
- ubuntu-latest
|
||||
steps:
|
||||
- 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 tests
|
||||
|
Loading…
x
Reference in New Issue
Block a user