Cache libsodium build in github actions
This commit is contained in:
parent
35fcda70aa
commit
c9e40da973
9
.github/workflows/crystal.yml
vendored
9
.github/workflows/crystal.yml
vendored
@ -17,16 +17,17 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: apt update
|
- name: apt update
|
||||||
run: apt update
|
run: apt update
|
||||||
- name: Install lsb_release
|
|
||||||
run: apt-get install -y lsb-release
|
|
||||||
- name: lsb_release
|
|
||||||
run: lsb_release -a
|
|
||||||
- name: Install wget
|
- name: Install wget
|
||||||
run: apt-get install -y wget
|
run: apt-get install -y wget
|
||||||
- name: setenv DEBUG
|
- name: setenv DEBUG
|
||||||
run: echo "SODIUM_BUILD_DEBUG=1" >> $GITHUB_ENV
|
run: echo "SODIUM_BUILD_DEBUG=1" >> $GITHUB_ENV
|
||||||
- name: setenv BUILD_DIR
|
- name: setenv BUILD_DIR
|
||||||
run: echo "LIBSODIUM_BUILD_DIR=$HOME/libsodium" >> $GITHUB_ENV
|
run: echo "LIBSODIUM_BUILD_DIR=$HOME/libsodium" >> $GITHUB_ENV
|
||||||
|
- name: Cache libsodium
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: ~/libsodium
|
||||||
|
key: ${{ runner.os }}-libsodium-${{ hashFiles('build/env.sh') }}
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: shards install
|
run: shards install
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
|
Loading…
Reference in New Issue
Block a user