Update apt-get database.
This commit is contained in:
parent
f879ec00a7
commit
e41634b75c
4
.github/workflows/ci.cue
vendored
4
.github/workflows/ci.cue
vendored
@ -22,8 +22,10 @@ jobs: ci: {
|
|||||||
}
|
}
|
||||||
steps: [
|
steps: [
|
||||||
{uses: "actions/checkout@v2"},
|
{uses: "actions/checkout@v2"},
|
||||||
|
{name: "Update apt-get database",
|
||||||
|
run: "apt-get update"},
|
||||||
{name: "Install libsodium",
|
{name: "Install libsodium",
|
||||||
run: "apt-get install -y libsodium"},
|
run: "apt-get install -y libsodium-dev"},
|
||||||
{name: "Compile source code",
|
{name: "Compile source code",
|
||||||
run: "make compile"},
|
run: "make compile"},
|
||||||
{name: "Run the tests",
|
{name: "Run the tests",
|
||||||
|
4
.github/workflows/ci.yaml
vendored
4
.github/workflows/ci.yaml
vendored
@ -20,8 +20,10 @@ jobs:
|
|||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
- name: Update apt-get database
|
||||||
|
run: apt-get update
|
||||||
- name: Install libsodium
|
- name: Install libsodium
|
||||||
run: apt-get install -y libsodium
|
run: apt-get install -y libsodium-dev
|
||||||
- name: Compile source code
|
- name: Compile source code
|
||||||
run: make compile
|
run: make compile
|
||||||
- name: Run the tests
|
- name: Run the tests
|
||||||
|
Loading…
x
Reference in New Issue
Block a user