From 69de39cf05ad1d523bb70af00147c293020b7c9f Mon Sep 17 00:00:00 2001 From: Beanow <497556+Beanow@users.noreply.github.com> Date: Wed, 11 Jan 2023 11:56:29 +0100 Subject: [PATCH] chore: remove irrelevant things for monorepo --- .changes/config.json | 41 ---------- .changes/readme.md | 16 ---- .github/workflows/audit.yml | 26 ------ .github/workflows/covector-status.yml | 15 ---- .../workflows/covector-version-or-publish.yml | 37 --------- .github/workflows/format.yml | 29 ------- .github/workflows/lint.yml | 34 -------- .github/workflows/test.yml | 80 ------------------- renovate.json | 7 -- 9 files changed, 285 deletions(-) delete mode 100644 .changes/config.json delete mode 100644 .changes/readme.md delete mode 100644 .github/workflows/audit.yml delete mode 100644 .github/workflows/covector-status.yml delete mode 100644 .github/workflows/covector-version-or-publish.yml delete mode 100644 .github/workflows/format.yml delete mode 100644 .github/workflows/lint.yml delete mode 100644 .github/workflows/test.yml delete mode 100644 renovate.json diff --git a/.changes/config.json b/.changes/config.json deleted file mode 100644 index 053cfec1..00000000 --- a/.changes/config.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "gitSiteUrl": "https://www.github.com/tauri-apps/tauri-plugin-single-instance/", - "pkgManagers": { - "rust": { - "version": true, - "getPublishedVersion": "cargo search ${ pkg.pkg } --limit 1 | sed -nE 's/^[^\"]*\"//; s/\".*//1p' -", - "publish": [ - { - "command": "cargo package --allow-dirty", - "dryRunCommand": true - }, - { - "command": "echo '
\n

Cargo Publish

\n\n```'", - "dryRunCommand": true, - "pipe": true - }, - { - "command": "echo \"\\`\\`\\`\"", - "dryRunCommand": true, - "pipe": true - }, - { - "command": "cargo publish", - "dryRunCommand": "cargo publish --dry-run --allow-dirty", - "pipe": true - }, - { - "command": "echo '```\n\n
\n'", - "dryRunCommand": true, - "pipe": true - } - ] - } - }, - "packages": { - "tauri-plugin-single-instance": { - "path": ".", - "manager": "rust" - } - } -} \ No newline at end of file diff --git a/.changes/readme.md b/.changes/readme.md deleted file mode 100644 index 3978845a..00000000 --- a/.changes/readme.md +++ /dev/null @@ -1,16 +0,0 @@ -# Changes -##### via https://github.com/jbolda/covector - -As you create PRs and make changes that require a version bump, please add a new markdown file in this folder. You do not note the version *number*, but rather the type of bump that you expect: major, minor, or patch. The filename is not important, as long as it is a `.md`, but we recommend it represents the overall change for our sanity. - -When you select the version bump required, you do *not* need to consider depedencies. Only note the package with the actual change, and any packages that depend on that package will be bumped automatically in the process. - -Use the following format: -```md ---- -"tauri-plugin-single-instance": patch ---- - -Change summary goes here - -``` \ No newline at end of file diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml deleted file mode 100644 index 7b977ff3..00000000 --- a/.github/workflows/audit.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Audit - -on: - schedule: - - cron: '0 0 * * *' - push: - branches: - - dev - paths: - - "**/Cargo.lock" - - "**/Cargo.toml" - pull_request: - branches: - - dev - paths: - - "**/Cargo.lock" - - "**/Cargo.toml" - -jobs: - audit: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/audit-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/covector-status.yml b/.github/workflows/covector-status.yml deleted file mode 100644 index 5ecb235e..00000000 --- a/.github/workflows/covector-status.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: covector status -on: [pull_request] - -jobs: - covector: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - name: covector status - uses: jbolda/covector/packages/action@covector-v0 - with: - command: 'status' diff --git a/.github/workflows/covector-version-or-publish.yml b/.github/workflows/covector-version-or-publish.yml deleted file mode 100644 index 34b2d322..00000000 --- a/.github/workflows/covector-version-or-publish.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: covector version or publish -on: - push: - branches: - - dev - -jobs: - covector: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - uses: actions/setup-node@v2 - with: - node-version: 12 - registry-url: 'https://registry.npmjs.org' - - name: git config - run: | - git config --global user.name "${{ github.event.pusher.name }}" - git config --global user.email "${{ github.event.pusher.email }}" - - name: covector version-or-publish - uses: jbolda/covector/packages/action@covector-v0 - id: covector - with: - token: ${{ secrets.GITHUB_TOKEN }} - command: 'version-or-publish' - createRelease: true - - name: create pull request - id: cpr - uses: tauri-apps/create-pull-request@v2.8.0 - with: - title: "Publish New Versions" - labels: "version updates" - branch: "release" - body: ${{ steps.covector.outputs.change }} diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml deleted file mode 100644 index 20a1f891..00000000 --- a/.github/workflows/format.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Format - -on: - push: - branches: - - dev - pull_request: - branches: - - dev - -jobs: - format: - runs-on: ubuntu-latest - strategy: - fail-fast: false - - steps: - - uses: actions/checkout@v2 - - name: Install rustfmt with nightly toolchain - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: nightly - override: true - components: rustfmt - - uses: actions-rs/cargo@v1 - with: - command: fmt - args: --manifest-path=Cargo.toml --all -- --check diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 597da44c..00000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Clippy - -on: - push: - branches: - - dev - pull_request: - branches: - - dev - -jobs: - clippy: - runs-on: ubuntu-latest - strategy: - fail-fast: false - - steps: - - uses: actions/checkout@v2 - - name: install webkit2gtk - run: | - sudo apt-get update - sudo apt-get install -y webkit2gtk-4.0 - - name: Install clippy with stable toolchain - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - components: clippy - - uses: actions-rs/clippy-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - args: --manifest-path=Cargo.toml --all-targets --all-features -- -D warnings - name: clippy diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 25289e5d..00000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,80 +0,0 @@ -name: Test - -on: - push: - branches: - - dev - pull_request: - branches: - - dev - paths-ignore: - - 'webview-src/**' - - 'webview-dist/**' - - 'examples/**' - -jobs: - build-and-test: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - - steps: - - uses: actions/checkout@v2 - - - name: Install stable toolchain - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - - - name: Install gtk on Ubuntu - if: matrix.os == 'ubuntu-latest' - run: | - sudo apt-get update - sudo apt-get install -y webkit2gtk-4.0 - - name: Get current date - if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' - run: echo "CURRENT_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV - - - name: Get current date - if: matrix.os == 'windows-latest' - run: echo "CURRENT_DATE=$(Get-Date -Format "yyyy-MM-dd")" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - - - name: Cache cargo state - uses: actions/cache@v2 - env: - cache-name: cargo-state - with: - path: | - ~/.cargo/registry - ~/.cargo/git - ~/.cargo/bin - key: ${{ matrix.os }}-stable-${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }}-${{ env.CURRENT_DATE }} - restore-keys: | - ${{ matrix.os }}-stable-${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }}- - ${{ matrix.os }}-stable-${{ env.cache-name }}- - ${{ matrix.os }}-stable- - ${{ matrix.os }}- - - - name: Cache cargo target - uses: actions/cache@v2 - env: - cache-name: cargo-build - with: - path: ${{ matrix.project}}/target - # Add date to the cache to keep it up to date - key: ${{ matrix.os }}-stable-${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }}-${{ env.CURRENT_DATE }} - # Restore from outdated cache for speed - restore-keys: | - ${{ matrix.os }}-stable-${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }} - ${{ matrix.os }}-stable-${{ env.cache-name }}- - ${{ matrix.os }}-stable- - ${{ matrix.os }}- - - - name: Run tests - uses: actions-rs/cargo@v1 - with: - command: test - args: --manifest-path=Cargo.toml --release diff --git a/renovate.json b/renovate.json deleted file mode 100644 index ec83b8bd..00000000 --- a/renovate.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base", - ":disableDependencyDashboard" - ] -}