2022-08-28 21:13:21 +03:00
|
|
|
# Copyright 2019-2022 Tauri Programme within The Commons Conservancy
|
2021-04-11 01:09:09 +03:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2020-07-15 14:14:11 +03:00
|
|
|
name: test bundler
|
|
|
|
|
|
|
|
on:
|
2021-04-22 23:34:46 +03:00
|
|
|
push:
|
|
|
|
branches:
|
2021-04-23 21:34:38 +03:00
|
|
|
- dev
|
2021-10-02 22:15:50 +03:00
|
|
|
- next
|
2020-07-15 14:14:11 +03:00
|
|
|
pull_request:
|
|
|
|
paths:
|
2020-07-16 02:05:07 +03:00
|
|
|
- '.github/workflows/test-bundler.yml'
|
2021-04-12 07:59:25 +03:00
|
|
|
- 'tooling/bundler/**'
|
2022-02-14 02:27:21 +03:00
|
|
|
|
2020-07-15 14:14:11 +03:00
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
2022-02-14 02:27:21 +03:00
|
|
|
CARGO_INCREMENTAL: 0 # This is set to 0 by the https://github.com/Swatinem/rust-cache
|
|
|
|
CARGO_PROFILE_DEV_DEBUG: 0 # This would add unnecessary bloat to the target folder, decreasing cache efficiency.
|
2020-07-15 14:14:11 +03:00
|
|
|
|
2022-04-21 21:09:57 +03:00
|
|
|
concurrency:
|
2022-04-27 01:04:10 +03:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
2022-04-21 21:09:57 +03:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-07-15 14:14:11 +03:00
|
|
|
jobs:
|
|
|
|
build-tauri-bundler:
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: install stable
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
2021-04-22 23:34:46 +03:00
|
|
|
|
|
|
|
- name: Get current date
|
|
|
|
run: echo "CURRENT_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
|
|
|
|
if: matrix.platform == 'macos-latest' || matrix.platform == 'ubuntu-latest'
|
|
|
|
|
|
|
|
- name: Get current date
|
|
|
|
if: matrix.platform == 'windows-latest'
|
|
|
|
run: echo "CURRENT_DATE=$(Get-Date -Format "yyyy-MM-dd")" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
|
|
|
|
2022-02-14 02:27:21 +03:00
|
|
|
- name: Cache cargo state
|
|
|
|
uses: actions/cache@v2
|
|
|
|
env:
|
2022-06-15 01:29:52 +03:00
|
|
|
cache-name: cargo_state
|
2021-04-22 23:34:46 +03:00
|
|
|
with:
|
2022-02-14 02:27:21 +03:00
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
~/.cargo/bin
|
|
|
|
key: ${{ matrix.platform }}-stable-${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }}-${{ env.CURRENT_DATE }}
|
2021-04-22 23:34:46 +03:00
|
|
|
restore-keys: |
|
2022-02-14 02:27:21 +03:00
|
|
|
${{ matrix.platform }}-stable-${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }}-
|
|
|
|
${{ matrix.platform }}-stable-${{ env.cache-name }}-
|
|
|
|
${{ matrix.platform }}-stable-
|
|
|
|
${{ matrix.platform }}-
|
2021-04-22 23:34:46 +03:00
|
|
|
|
|
|
|
- name: Cache bundler cargo target
|
|
|
|
uses: actions/cache@v2
|
2022-02-14 02:27:21 +03:00
|
|
|
env:
|
2022-06-15 01:29:52 +03:00
|
|
|
cache-name: cargo_bundler
|
2021-04-22 23:34:46 +03:00
|
|
|
with:
|
|
|
|
path: tooling/bundler/target
|
|
|
|
# Add date to the cache to keep it up to date
|
2022-02-14 02:27:21 +03:00
|
|
|
key: ${{ matrix.platform }}-stable-${{ env.cache-name }}-${{ hashFiles('tooling/bundler/Cargo.lock') }}-${{ env.CURRENT_DATE }}
|
2021-04-22 23:34:46 +03:00
|
|
|
# Restore from outdated cache for speed
|
|
|
|
restore-keys: |
|
2022-02-14 02:27:21 +03:00
|
|
|
${{ matrix.platform }}-stable-${{ env.cache-name }}-${{ hashFiles('tooling/bundler/Cargo.lock') }}
|
|
|
|
${{ matrix.platform }}-stable-${{ env.cache-name }}-
|
|
|
|
${{ matrix.platform }}-stable-
|
|
|
|
${{ matrix.platform }}-
|
2021-04-22 23:34:46 +03:00
|
|
|
|
2020-07-15 14:14:11 +03:00
|
|
|
- name: test
|
|
|
|
run: |
|
2021-04-12 07:59:25 +03:00
|
|
|
cd ./tooling/bundler
|
2020-07-15 14:14:11 +03:00
|
|
|
cargo test
|
|
|
|
|
2022-02-14 00:21:15 +03:00
|
|
|
fmt_check:
|
2020-07-15 14:14:11 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-02-14 00:21:15 +03:00
|
|
|
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
2022-06-25 04:01:13 +03:00
|
|
|
toolchain: stable
|
2022-02-14 00:21:15 +03:00
|
|
|
override: true
|
|
|
|
components: rustfmt
|
|
|
|
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: fmt
|
|
|
|
args: --manifest-path ./tooling/bundler/Cargo.toml --all -- --check
|
|
|
|
|
|
|
|
clippy-check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: install minimal stable with clippy and rustfmt
|
2021-04-22 23:34:46 +03:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2022-02-14 00:21:15 +03:00
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
components: rustfmt, clippy
|
|
|
|
|
|
|
|
- name: Get current date
|
|
|
|
run: echo "CURRENT_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
|
|
|
|
if: matrix.platform == 'macos-latest' || matrix.platform == 'ubuntu-latest'
|
|
|
|
|
|
|
|
- name: Get current date
|
|
|
|
if: matrix.platform == 'windows-latest'
|
|
|
|
run: echo "CURRENT_DATE=$(Get-Date -Format "yyyy-MM-dd")" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
|
|
|
|
2022-02-14 02:27:21 +03:00
|
|
|
- name: Cache cargo state
|
|
|
|
uses: actions/cache@v2
|
|
|
|
env:
|
2022-06-15 01:29:52 +03:00
|
|
|
cache-name: cargo_state
|
2022-02-14 00:21:15 +03:00
|
|
|
with:
|
2022-02-14 02:27:21 +03:00
|
|
|
path: |
|
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
|
|
|
~/.cargo/bin
|
|
|
|
key: ${{ matrix.platform }}-stable-${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }}-${{ env.CURRENT_DATE }}
|
2022-02-14 00:21:15 +03:00
|
|
|
restore-keys: |
|
2022-02-14 02:27:21 +03:00
|
|
|
${{ matrix.platform }}-stable-${{ env.cache-name }}-${{ hashFiles('**/Cargo.toml') }}-
|
|
|
|
${{ matrix.platform }}-stable-${{ env.cache-name }}-
|
|
|
|
${{ matrix.platform }}-stable-
|
|
|
|
${{ matrix.platform }}-
|
2022-02-14 00:21:15 +03:00
|
|
|
|
|
|
|
- name: Cache bundler cargo target
|
|
|
|
uses: actions/cache@v2
|
2022-02-14 02:27:21 +03:00
|
|
|
env:
|
2022-06-15 01:29:52 +03:00
|
|
|
cache-name: cargo_bundler
|
2022-02-14 00:21:15 +03:00
|
|
|
with:
|
|
|
|
path: tooling/bundler/target
|
|
|
|
# Add date to the cache to keep it up to date
|
2022-02-14 02:27:21 +03:00
|
|
|
key: ${{ matrix.platform }}-stable-${{ env.cache-name }}-${{ hashFiles('tooling/bundler/Cargo.lock') }}-${{ env.CURRENT_DATE }}
|
2022-02-14 00:21:15 +03:00
|
|
|
# Restore from outdated cache for speed
|
|
|
|
restore-keys: |
|
2022-02-14 02:27:21 +03:00
|
|
|
${{ matrix.platform }}-stable-${{ env.cache-name }}-${{ hashFiles('tooling/bundler/Cargo.lock') }}
|
|
|
|
${{ matrix.platform }}-stable-${{ env.cache-name }}-
|
|
|
|
${{ matrix.platform }}-stable-
|
|
|
|
${{ matrix.platform }}-
|
2021-04-22 23:34:46 +03:00
|
|
|
|
2020-07-15 14:14:11 +03:00
|
|
|
- name: clippy check
|
|
|
|
uses: actions-rs/clippy-check@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2021-04-12 07:59:25 +03:00
|
|
|
args: --manifest-path ./tooling/bundler/Cargo.toml --all-targets -- -D warnings
|
2020-07-15 14:14:11 +03:00
|
|
|
name: bundler
|