mirror of
https://github.com/aljazceru/cdk.git
synced 2025-12-29 02:25:11 +01:00
Merge pull request #960 from thesimplekid/free_disk_ci
chore: free disk space on ci
This commit is contained in:
46
.github/workflows/ci.yml
vendored
46
.github/workflows/ci.yml
vendored
@@ -41,7 +41,7 @@ jobs:
|
||||
name: "Run examples"
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 30
|
||||
needs: [pre-commit-checks, clippy]
|
||||
needs: pre-commit-checks
|
||||
strategy:
|
||||
matrix:
|
||||
build-args:
|
||||
@@ -172,6 +172,16 @@ jobs:
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Free Disk Space (Ubuntu)
|
||||
uses: jlumbroso/free-disk-space@main
|
||||
with:
|
||||
tool-cache: false
|
||||
android: true
|
||||
dotnet: true
|
||||
haskell: true
|
||||
large-packages: true
|
||||
docker-images: true
|
||||
swap-storage: true
|
||||
- name: Install Nix
|
||||
uses: DeterminateSystems/nix-installer-action@v17
|
||||
- name: Nix Cache
|
||||
@@ -201,6 +211,16 @@ jobs:
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Free Disk Space (Ubuntu)
|
||||
uses: jlumbroso/free-disk-space@main
|
||||
with:
|
||||
tool-cache: true
|
||||
android: true
|
||||
dotnet: true
|
||||
haskell: true
|
||||
large-packages: true
|
||||
docker-images: true
|
||||
swap-storage: true
|
||||
- name: Install Nix
|
||||
uses: DeterminateSystems/nix-installer-action@v17
|
||||
- name: Nix Cache
|
||||
@@ -230,6 +250,16 @@ jobs:
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Free Disk Space (Ubuntu)
|
||||
uses: jlumbroso/free-disk-space@main
|
||||
with:
|
||||
tool-cache: true
|
||||
android: true
|
||||
dotnet: true
|
||||
haskell: true
|
||||
large-packages: true
|
||||
docker-images: true
|
||||
swap-storage: true
|
||||
- name: Install Nix
|
||||
uses: DeterminateSystems/nix-installer-action@v17
|
||||
- name: Nix Cache
|
||||
@@ -260,6 +290,16 @@ jobs:
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Free Disk Space (Ubuntu)
|
||||
uses: jlumbroso/free-disk-space@main
|
||||
with:
|
||||
tool-cache: true
|
||||
android: true
|
||||
dotnet: true
|
||||
haskell: true
|
||||
large-packages: true
|
||||
docker-images: true
|
||||
swap-storage: true
|
||||
- name: Install Nix
|
||||
uses: DeterminateSystems/nix-installer-action@v17
|
||||
- name: Nix Cache
|
||||
@@ -275,7 +315,7 @@ jobs:
|
||||
name: "MSRV build"
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 30
|
||||
needs: [pre-commit-checks, clippy, pure-itest]
|
||||
needs: [pre-commit-checks, clippy]
|
||||
strategy:
|
||||
matrix:
|
||||
build-args:
|
||||
@@ -316,7 +356,7 @@ jobs:
|
||||
name: Check WASM
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 30
|
||||
needs: [pre-commit-checks, clippy, pure-itest]
|
||||
needs: [pre-commit-checks, clippy]
|
||||
strategy:
|
||||
matrix:
|
||||
rust:
|
||||
|
||||
@@ -123,6 +123,8 @@ export CDK_PAYMENT_PROCESSOR_LISTEN_PORT="8090";
|
||||
|
||||
echo "$CDK_PAYMENT_PROCESSOR_CLN_RPC_PATH"
|
||||
|
||||
cargo b --bin cdk-payment-processor
|
||||
|
||||
cargo run --bin cdk-payment-processor &
|
||||
|
||||
CDK_PAYMENT_PROCESSOR_PID=$!
|
||||
|
||||
Reference in New Issue
Block a user