-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #197 from tauri-apps/ci-setup
Improved CI setup
- Loading branch information
Showing
10 changed files
with
137 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ jobs: | |
RUSTFLAGS: ${{matrix.rustflags}} ${{env.RUSTFLAGS}} | ||
|
||
msrv: | ||
name: Rust 1.70.0 | ||
name: Rust MSRV | ||
needs: pre_ci | ||
if: needs.pre_ci.outputs.continue | ||
runs-on: ubuntu-latest | ||
|
@@ -55,7 +55,9 @@ jobs: | |
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y webkit2gtk-4.0 libgtk-3-dev | ||
- uses: dtolnay/[email protected] | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
toolchain: 1.70.0 # MSRV | ||
- uses: Swatinem/rust-cache@v2 | ||
- run: cargo check --workspace --tests | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Spelling | ||
|
||
permissions: | ||
contents: read | ||
|
||
on: [pull_request] | ||
|
||
env: | ||
RUST_BACKTRACE: 1 | ||
CARGO_TERM_COLOR: always | ||
CLICOLOR: 1 | ||
|
||
jobs: | ||
spelling: | ||
name: Spell Check with Typos | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
uses: actions/checkout@v3 | ||
- name: Spell Check Repo | ||
uses: crate-ci/typos@master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
{ | ||
// schedule: [ | ||
// 'before 5am on the first day of the month', | ||
//], | ||
semanticCommits: 'enabled', | ||
configMigration: true, | ||
dependencyDashboard: true, | ||
regexManagers: [ | ||
{ | ||
customType: 'regex', | ||
fileMatch: [ | ||
'^rust-toolchain\\.toml$', | ||
'Cargo.toml$', | ||
'clippy.toml$', | ||
'\\.clippy.toml$', | ||
'^\\.github/workflows/ci.yml$', | ||
'^\\.github/workflows/rust-next.yml$', | ||
], | ||
matchStrings: [ | ||
'MSRV.*?(?<currentValue>\\d+\\.\\d+(\\.\\d+)?)', | ||
'(?<currentValue>\\d+\\.\\d+(\\.\\d+)?).*?MSRV', | ||
], | ||
depNameTemplate: 'rust', | ||
packageNameTemplate: 'rust-lang/rust', | ||
datasourceTemplate: 'github-releases', | ||
}, | ||
], | ||
packageRules: [ | ||
{ | ||
commitMessageTopic: 'MSRV', | ||
matchManagers: [ | ||
'regex', | ||
], | ||
matchPackageNames: [ | ||
'rust', | ||
], | ||
minimumReleaseAge: '252 days', // 6 releases * 6 weeks per release * 7 days per week | ||
internalChecksFilter: 'strict', | ||
}, | ||
// Goals: | ||
// - Keep version reqs low, ignoring compatible normal/build dependencies | ||
// - Take advantage of latest dev-dependencies | ||
// - Rollup safe upgrades to reduce CI runner load | ||
// - Help keep number of versions down by always using latest breaking change | ||
// - Have lockfile and manifest in-sync | ||
{ | ||
matchManagers: [ | ||
'cargo', | ||
], | ||
matchDepTypes: [ | ||
'build-dependencies', | ||
'dependencies', | ||
], | ||
matchCurrentVersion: '>=0.1.0', | ||
matchUpdateTypes: [ | ||
'patch', | ||
], | ||
enabled: false, | ||
}, | ||
{ | ||
matchManagers: [ | ||
'cargo', | ||
], | ||
matchDepTypes: [ | ||
'build-dependencies', | ||
'dependencies', | ||
], | ||
matchCurrentVersion: '>=1.0.0', | ||
matchUpdateTypes: [ | ||
'minor', | ||
], | ||
enabled: false, | ||
}, | ||
{ | ||
matchManagers: [ | ||
'cargo', | ||
], | ||
matchDepTypes: [ | ||
'dev-dependencies', | ||
], | ||
matchCurrentVersion: '>=0.1.0', | ||
matchUpdateTypes: [ | ||
'patch', | ||
], | ||
automerge: true, | ||
groupName: 'compatible (dev)', | ||
}, | ||
{ | ||
matchManagers: [ | ||
'cargo', | ||
], | ||
matchDepTypes: [ | ||
'dev-dependencies', | ||
], | ||
matchCurrentVersion: '>=1.0.0', | ||
matchUpdateTypes: [ | ||
'minor', | ||
], | ||
automerge: true, | ||
groupName: 'compatible (dev)', | ||
}, | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[default.extend-words] | ||
# Abbreviations | ||
inout = "inout" | ||
ser = "ser" |