mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-12-04 15:16:31 +00:00
Cache sqlx-cli in CI
This commit is contained in:
parent
0ca3df44e1
commit
d6cd6f08fd
1 changed files with 99 additions and 9 deletions
108
.github/workflows/general.yml
vendored
108
.github/workflows/general.yml
vendored
|
@ -28,19 +28,56 @@ jobs:
|
||||||
POSTGRES_DB: postgres
|
POSTGRES_DB: postgres
|
||||||
ports:
|
ports:
|
||||||
- 5432:5432
|
- 5432:5432
|
||||||
|
env:
|
||||||
|
SQLX_VERSION: 0.5.5
|
||||||
|
SQLX_FEATURES: postgres
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- name: Checkout repository
|
||||||
- uses: actions-rs/toolchain@v1
|
uses: actions/checkout@v2
|
||||||
|
- name: Cache dependencies
|
||||||
|
id: cache-dependencies
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/registry
|
||||||
|
~/.cargo/git
|
||||||
|
target
|
||||||
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||||||
|
- name: Install stable toolchain
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
|
- name: Cache sqlx-cli
|
||||||
|
uses: actions/cache@v2
|
||||||
|
id: cache-sqlx
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/bin/sqlx
|
||||||
|
key: ${{ runner.os }}-sqlx-${{ env.SQLX_VERSION }}-${{ env.SQLX_FEATURES }}
|
||||||
|
|
||||||
|
- name: Install sqlx-cli
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
if: steps.cache-sqlx.outputs.cache-hit == false
|
||||||
|
with:
|
||||||
|
command: install
|
||||||
|
args: >
|
||||||
|
sqlx-cli
|
||||||
|
--force
|
||||||
|
--version=${{ env.SQLX_VERSION }}
|
||||||
|
--features=${{ env.SQLX_FEATURES }}
|
||||||
|
--no-default-features
|
||||||
|
--locked
|
||||||
|
|
||||||
- name: Migrate database
|
- name: Migrate database
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install libpq-dev -y
|
sudo apt-get install libpq-dev -y
|
||||||
cargo install --version=0.5.5 --locked sqlx-cli --no-default-features --features postgres
|
|
||||||
SKIP_DOCKER=true ./scripts/init_db.sh
|
SKIP_DOCKER=true ./scripts/init_db.sh
|
||||||
- uses: actions-rs/cargo@v1
|
|
||||||
|
- name: Run cargo test
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: test
|
command: test
|
||||||
|
|
||||||
|
@ -71,19 +108,48 @@ jobs:
|
||||||
POSTGRES_DB: postgres
|
POSTGRES_DB: postgres
|
||||||
ports:
|
ports:
|
||||||
- 5432:5432
|
- 5432:5432
|
||||||
|
env:
|
||||||
|
SQLX_VERSION: 0.5.5
|
||||||
|
SQLX_FEATURES: postgres
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- name: Checkout repository
|
||||||
- uses: actions-rs/toolchain@v1
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install stable toolchain
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
components: clippy
|
components: clippy
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
|
- name: Cache sqlx-cli
|
||||||
|
uses: actions/cache@v2
|
||||||
|
id: cache-sqlx
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/bin/sqlx
|
||||||
|
key: ${{ runner.os }}-sqlx-${{ env.SQLX_VERSION }}-${{ env.SQLX_FEATURES }}
|
||||||
|
|
||||||
|
- name: Install sqlx-cli
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
if: steps.cache-sqlx.outputs.cache-hit == false
|
||||||
|
with:
|
||||||
|
command: install
|
||||||
|
args: >
|
||||||
|
sqlx-cli
|
||||||
|
--force
|
||||||
|
--version=${{ env.SQLX_VERSION }}
|
||||||
|
--features=${{ env.SQLX_FEATURES }}
|
||||||
|
--no-default-features
|
||||||
|
--locked
|
||||||
|
|
||||||
- name: Migrate database
|
- name: Migrate database
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install libpq-dev -y
|
sudo apt-get install libpq-dev -y
|
||||||
cargo install --version=0.5.5 --locked sqlx-cli --no-default-features --features postgres
|
|
||||||
SKIP_DOCKER=true ./scripts/init_db.sh
|
SKIP_DOCKER=true ./scripts/init_db.sh
|
||||||
- uses: actions-rs/clippy-check@v1
|
|
||||||
|
- name: Run clippy
|
||||||
|
uses: actions-rs/clippy-check@v1
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
args: -- -D warnings
|
args: -- -D warnings
|
||||||
|
@ -100,6 +166,9 @@ jobs:
|
||||||
POSTGRES_DB: postgres
|
POSTGRES_DB: postgres
|
||||||
ports:
|
ports:
|
||||||
- 5432:5432
|
- 5432:5432
|
||||||
|
env:
|
||||||
|
SQLX_VERSION: 0.5.5
|
||||||
|
SQLX_FEATURES: postgres
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -110,11 +179,32 @@ jobs:
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
|
- name: Cache sqlx-cli
|
||||||
|
uses: actions/cache@v2
|
||||||
|
id: cache-sqlx
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/bin/sqlx
|
||||||
|
key: ${{ runner.os }}-sqlx-${{ env.SQLX_VERSION }}-${{ env.SQLX_FEATURES }}
|
||||||
|
|
||||||
|
- name: Install sqlx-cli
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
if: steps.cache-sqlx.outputs.cache-hit == false
|
||||||
|
with:
|
||||||
|
command: install
|
||||||
|
args: >
|
||||||
|
sqlx-cli
|
||||||
|
--force
|
||||||
|
--version=${{ env.SQLX_VERSION }}
|
||||||
|
--features=${{ env.SQLX_FEATURES }}
|
||||||
|
--no-default-features
|
||||||
|
--locked
|
||||||
|
|
||||||
- name: Migrate database
|
- name: Migrate database
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install libpq-dev -y
|
sudo apt-get install libpq-dev -y
|
||||||
cargo install --version=0.5.5 --locked sqlx-cli --no-default-features --features postgres
|
|
||||||
SKIP_DOCKER=true ./scripts/init_db.sh
|
SKIP_DOCKER=true ./scripts/init_db.sh
|
||||||
|
|
||||||
- name: Run cargo-tarpaulin
|
- name: Run cargo-tarpaulin
|
||||||
uses: actions-rs/tarpaulin@v0.1
|
uses: actions-rs/tarpaulin@v0.1
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue