.github: replace ~ with /home/runner

Signed-off-by: Manos Pitsidianakis <manos@pitsidianak.is>
add-rfc9500-test-keys
Manos Pitsidianakis 2023-11-02 15:22:40 +02:00
parent e7ca77aa8a
commit a46b5b315d
Signed by: Manos Pitsidianakis
GPG Key ID: 7729C7707F7E09D0
4 changed files with 16 additions and 16 deletions

View File

@ -3,7 +3,7 @@ name: Build release binary
env:
RUST_BACKTRACE: 1
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
SQLITE_BIN: ~/.sqlite3/sqlite3
SQLITE_BIN: /home/runner/.sqlite3/sqlite3
on:
workflow_dispatch:
@ -31,15 +31,15 @@ jobs:
name: Cache sqlite3 binary
uses: actions/cache@v3
with:
path: ~/.sqlite3
path: /home/runner/.sqlite3
key: toolchain-sqlite3
- if: ${{ steps.cache-sqlite3-bin.outputs.cache-hit != 'true' }}
name: Download sqlite3 binary
run: |
set -ex
sudo apt-get install -y --quiet wget unzip
mkdir -p ~/.sqlite3
cd ~/.sqlite3
mkdir -p /home/runner/.sqlite3
cd /home/runner/.sqlite3
wget "https://sqlite.org/2023/sqlite-tools-linux-x86-3420000.zip"
unzip sqlite-tools-linux-x86-3420000.zip
mv sqlite-tools-linux-x86-3420000/* .

View File

@ -3,7 +3,7 @@ name: Code coverage
env:
RUST_BACKTRACE: 1
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
SQLITE_BIN: ~/.sqlite3/sqlite3
SQLITE_BIN: /home/runner/.sqlite3/sqlite3
on:
workflow_dispatch:
@ -21,15 +21,15 @@ jobs:
name: Cache sqlite3 binary
uses: actions/cache@v3
with:
path: ~/.sqlite3
path: /home/runner/.sqlite3
key: toolchain-sqlite3
- if: ${{ steps.cache-sqlite3-bin.outputs.cache-hit != 'true' }}
name: Download sqlite3 binary
run: |
set -ex
sudo apt-get install -y --quiet wget unzip
mkdir -p ~/.sqlite3
cd ~/.sqlite3
mkdir -p /home/runner/.sqlite3
cd /home/runner/.sqlite3
wget "https://sqlite.org/2023/sqlite-tools-linux-x86-3420000.zip"
unzip sqlite-tools-linux-x86-3420000.zip
mv sqlite-tools-linux-x86-3420000/* .

View File

@ -3,7 +3,7 @@ name: Build rustdoc for Github Pages
env:
RUST_BACKTRACE: 1
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
SQLITE_BIN: ~/.sqlite3/sqlite3
SQLITE_BIN: /home/runner/.sqlite3/sqlite3
on:
workflow_dispatch:
@ -17,15 +17,15 @@ jobs:
name: Cache sqlite3 binary
uses: actions/cache@v3
with:
path: ~/.sqlite3
path: /home/runner/.sqlite3
key: toolchain-sqlite3
- if: ${{ steps.cache-sqlite3-bin.outputs.cache-hit != 'true' }}
name: Download sqlite3 binary
run: |
set -ex
sudo apt-get install -y --quiet wget unzip
mkdir -p ~/.sqlite3
cd ~/.sqlite3
mkdir -p /home/runner/.sqlite3
cd /home/runner/.sqlite3
wget "https://sqlite.org/2023/sqlite-tools-linux-x86-3420000.zip"
unzip sqlite-tools-linux-x86-3420000.zip
mv sqlite-tools-linux-x86-3420000/* .

View File

@ -3,7 +3,7 @@ name: Tests
env:
RUST_BACKTRACE: 1
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
SQLITE_BIN: ~/.sqlite3/sqlite3
SQLITE_BIN: /home/runner/.sqlite3/sqlite3
on:
workflow_dispatch:
@ -35,15 +35,15 @@ jobs:
name: Cache sqlite3 binary
uses: actions/cache@v3
with:
path: ~/.sqlite3
path: /home/runner/.sqlite3
key: toolchain-sqlite3
- if: ${{ steps.cache-sqlite3-bin.outputs.cache-hit != 'true' }}
name: Download sqlite3 binary
run: |
set -ex
sudo apt-get install -y --quiet wget unzip
mkdir -p ~/.sqlite3
cd ~/.sqlite3
mkdir -p /home/runner/.sqlite3
cd /home/runner/.sqlite3
wget "https://sqlite.org/2023/sqlite-tools-linux-x86-3420000.zip"
unzip sqlite-tools-linux-x86-3420000.zip
mv sqlite-tools-linux-x86-3420000/* .