mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-08-07 18:28:39 +02:00
ci
This commit is contained in:
@@ -78,6 +78,7 @@
|
|||||||
"notification",
|
"notification",
|
||||||
"os",
|
"os",
|
||||||
"process",
|
"process",
|
||||||
|
"secure-storage",
|
||||||
"shell",
|
"shell",
|
||||||
"store",
|
"store",
|
||||||
"updater",
|
"updater",
|
||||||
@@ -104,6 +105,7 @@
|
|||||||
"notification-js",
|
"notification-js",
|
||||||
"os-js",
|
"os-js",
|
||||||
"process-js",
|
"process-js",
|
||||||
|
"secure-storage-js",
|
||||||
"shell-js",
|
"shell-js",
|
||||||
"store-js",
|
"store-js",
|
||||||
"updater-js"
|
"updater-js"
|
||||||
@@ -282,6 +284,14 @@
|
|||||||
"path": "./plugins/process",
|
"path": "./plugins/process",
|
||||||
"manager": "javascript"
|
"manager": "javascript"
|
||||||
},
|
},
|
||||||
|
"secure-storage": {
|
||||||
|
"path": "./plugins/secure-storage",
|
||||||
|
"manager": "rust"
|
||||||
|
},
|
||||||
|
"secure-storage-js": {
|
||||||
|
"path": "./plugins/secure-storage",
|
||||||
|
"manager": "javascript"
|
||||||
|
},
|
||||||
"shell": {
|
"shell": {
|
||||||
"path": "./plugins/shell",
|
"path": "./plugins/shell",
|
||||||
"manager": "rust"
|
"manager": "rust"
|
||||||
|
|||||||
@@ -7,9 +7,9 @@ name: check generated files
|
|||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- '.github/workflows/check-generated-files.yml'
|
- ".github/workflows/check-generated-files.yml"
|
||||||
- pnpm-lock.yaml
|
- pnpm-lock.yaml
|
||||||
- '**/guest-js/**'
|
- "**/guest-js/**"
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
@@ -101,6 +101,11 @@ jobs:
|
|||||||
- pnpm-lock.yaml
|
- pnpm-lock.yaml
|
||||||
- plugins/process/guest-js/**
|
- plugins/process/guest-js/**
|
||||||
- plugins/process/src/api-iife.js
|
- plugins/process/src/api-iife.js
|
||||||
|
secure-storage:
|
||||||
|
- .github/workflows/check-generated-files.yml
|
||||||
|
- pnpm-lock.yaml
|
||||||
|
- plugins/secure-storage/guest-js/**
|
||||||
|
- plugins/secure-storage/src/api-iife.js
|
||||||
shell:
|
shell:
|
||||||
- .github/workflows/check-generated-files.yml
|
- .github/workflows/check-generated-files.yml
|
||||||
- pnpm-lock.yaml
|
- pnpm-lock.yaml
|
||||||
@@ -164,7 +169,7 @@ jobs:
|
|||||||
${{ runner.os }}-
|
${{ runner.os }}-
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 'lts/*'
|
node-version: "lts/*"
|
||||||
- uses: pnpm/action-setup@v4
|
- uses: pnpm/action-setup@v4
|
||||||
with:
|
with:
|
||||||
version: 10.x.x
|
version: 10.x.x
|
||||||
|
|||||||
@@ -10,19 +10,19 @@ on:
|
|||||||
- v1
|
- v1
|
||||||
- v2
|
- v2
|
||||||
paths:
|
paths:
|
||||||
- '.github/workflows/lint-rust.yml'
|
- ".github/workflows/lint-rust.yml"
|
||||||
- 'plugins/*/src/**'
|
- "plugins/*/src/**"
|
||||||
- '!plugins/*/src/api-iife.js'
|
- "!plugins/*/src/api-iife.js"
|
||||||
- '**/Cargo.toml'
|
- "**/Cargo.toml"
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- v1
|
- v1
|
||||||
- v2
|
- v2
|
||||||
paths:
|
paths:
|
||||||
- '.github/workflows/lint-rust.yml'
|
- ".github/workflows/lint-rust.yml"
|
||||||
- 'plugins/*/src/**'
|
- "plugins/*/src/**"
|
||||||
- '!plugins/*/src/api-iife.js'
|
- "!plugins/*/src/api-iife.js"
|
||||||
- '**/Cargo.toml'
|
- "**/Cargo.toml"
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
@@ -98,6 +98,9 @@ jobs:
|
|||||||
tauri-plugin-process:
|
tauri-plugin-process:
|
||||||
- .github/workflows/lint-rust.yml
|
- .github/workflows/lint-rust.yml
|
||||||
- plugins/process/**
|
- plugins/process/**
|
||||||
|
tauri-plugin-secure-storage:
|
||||||
|
- .github/workflows/lint-rust.yml
|
||||||
|
- plugins/secure-storage/**
|
||||||
tauri-plugin-shell:
|
tauri-plugin-shell:
|
||||||
- .github/workflows/lint-rust.yml
|
- .github/workflows/lint-rust.yml
|
||||||
- plugins/shell/**
|
- plugins/shell/**
|
||||||
|
|||||||
@@ -10,21 +10,21 @@ on:
|
|||||||
- v1
|
- v1
|
||||||
- v2
|
- v2
|
||||||
paths:
|
paths:
|
||||||
- '.github/workflows/test-rust.yml'
|
- ".github/workflows/test-rust.yml"
|
||||||
- 'plugins/*/src/**'
|
- "plugins/*/src/**"
|
||||||
- '!plugins/*/src/api-iife.js'
|
- "!plugins/*/src/api-iife.js"
|
||||||
- '**/Cargo.toml'
|
- "**/Cargo.toml"
|
||||||
- '**/Cargo.lock'
|
- "**/Cargo.lock"
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- v1
|
- v1
|
||||||
- v2
|
- v2
|
||||||
paths:
|
paths:
|
||||||
- '.github/workflows/test-rust.yml'
|
- ".github/workflows/test-rust.yml"
|
||||||
- 'plugins/*/src/**'
|
- "plugins/*/src/**"
|
||||||
- '!plugins/*/src/api-iife.js'
|
- "!plugins/*/src/api-iife.js"
|
||||||
- '**/Cargo.toml'
|
- "**/Cargo.toml"
|
||||||
- '**/Cargo.lock'
|
- "**/Cargo.lock"
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
@@ -137,6 +137,11 @@ jobs:
|
|||||||
- Cargo.toml
|
- Cargo.toml
|
||||||
- Cargo.lock
|
- Cargo.lock
|
||||||
- plugins/process/**
|
- plugins/process/**
|
||||||
|
tauri-plugin-secure-storage:
|
||||||
|
- .github/workflows/test-rust.yml
|
||||||
|
- Cargo.toml
|
||||||
|
- Cargo.lock
|
||||||
|
- plugins/secure-storage/**
|
||||||
tauri-plugin-shell:
|
tauri-plugin-shell:
|
||||||
- .github/workflows/test-rust.yml
|
- .github/workflows/test-rust.yml
|
||||||
- Cargo.toml
|
- Cargo.toml
|
||||||
@@ -194,32 +199,32 @@ jobs:
|
|||||||
- {
|
- {
|
||||||
target: x86_64-pc-windows-msvc,
|
target: x86_64-pc-windows-msvc,
|
||||||
os: windows-latest,
|
os: windows-latest,
|
||||||
runner: 'cargo',
|
runner: "cargo",
|
||||||
command: 'test'
|
command: "test",
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
target: x86_64-unknown-linux-gnu,
|
target: x86_64-unknown-linux-gnu,
|
||||||
os: ubuntu-22.04,
|
os: ubuntu-22.04,
|
||||||
runner: 'cargo',
|
runner: "cargo",
|
||||||
command: 'test'
|
command: "test",
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
target: aarch64-apple-darwin,
|
target: aarch64-apple-darwin,
|
||||||
os: macos-latest,
|
os: macos-latest,
|
||||||
runner: 'cargo',
|
runner: "cargo",
|
||||||
command: 'test'
|
command: "test",
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
target: aarch64-apple-ios,
|
target: aarch64-apple-ios,
|
||||||
os: macos-latest,
|
os: macos-latest,
|
||||||
runner: 'cargo',
|
runner: "cargo",
|
||||||
command: 'build'
|
command: "build",
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
target: aarch64-linux-android,
|
target: aarch64-linux-android,
|
||||||
os: ubuntu-latest,
|
os: ubuntu-latest,
|
||||||
runner: 'cross',
|
runner: "cross",
|
||||||
command: 'build'
|
command: "build",
|
||||||
}
|
}
|
||||||
|
|
||||||
runs-on: ${{ matrix.platform.os }}
|
runs-on: ${{ matrix.platform.os }}
|
||||||
|
|||||||
Reference in New Issue
Block a user