chore: update time dep in Cargo.lock #2536
Workflow file for this run
This file contains hidden or 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
| # SPDX-FileCopyrightText: 2025 Phoenix R&D GmbH <hello@phnx.im> | |
| # | |
| # SPDX-License-Identifier: AGPL-3.0-or-later | |
| name: Build Linux app | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| branches: ["main"] | |
| merge_group: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| CARGO_INCREMENTAL: 0 | |
| jobs: | |
| linux-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| # Fetch all commit metadata (build number is derived from number of commits) | |
| fetch-depth: 0 | |
| # Don't download historical file contents (blobs) | |
| filter: blob:none | |
| - run: git lfs install && git lfs pull | |
| - name: Set up Just | |
| uses: extractions/setup-just@v2 | |
| - name: Set up Flutter FVM | |
| uses: kuhnroyal/flutter-fvm-config-action/setup@v3 | |
| with: | |
| path: 'app/.fvmrc' | |
| cache: false | |
| - name: Set up Rust toolchain | |
| uses: dtolnay/rust-toolchain@1.92.0 | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-directories: app/build/linux/x64/release/plugins/airapplogic/cargokit_build | |
| - name: Install build dependencies | |
| run: sudo apt-get update && sudo apt-get install -y ninja-build gtk+-3.0 gtk+-3.0-dev glib-2.0-dev gio-2.0-dev | |
| - name: Build Linux app | |
| run: just build-linux | |
| - name: Upload Linux app | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: linux-app-x64 | |
| path: app/build/linux/x64/release/bundle |