Skip to content

Commit

Permalink
Reverted tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jLynx committed Nov 24, 2024
1 parent cd37fc1 commit a6b9da7
Showing 1 changed file with 51 additions and 51 deletions.
102 changes: 51 additions & 51 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -1,52 +1,52 @@
# Copyright 2019-2023 Tauri Programme within The Commons Conservancy
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: MIT

name: integration tests

on:
push:
branches:
- v1
- v2
paths:
- '.github/workflows/integration-tests.yml'
- 'plugins/updater/src/**'
pull_request:
branches:
- v1
- v2
paths:
- '.github/workflows/integration-tests.yml'
- 'plugins/updater/src/**'

jobs:
run-integration-tests:
runs-on: ${{ matrix.platform }}

strategy:
fail-fast: false
matrix:
platform: [ubuntu-22.04, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: install stable
uses: dtolnay/rust-toolchain@stable

- name: install Linux dependencies
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y webkit2gtk-4.0 libwebkit2gtk-4.1-dev libayatana-appindicator3-dev libfuse2
- uses: Swatinem/rust-cache@v2

- name: install Tauri CLI
run: cargo install tauri-cli --git https://github.com/tauri-apps/tauri --branch dev

- name: run integration tests
# Copyright 2019-2023 Tauri Programme within The Commons Conservancy
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: MIT

name: integration tests

on:
push:
branches:
- v1
- v2
paths:
- '.github/workflows/integration-tests.yml'
- 'plugins/updater/src/**'
pull_request:
branches:
- v1
- v2
paths:
- '.github/workflows/integration-tests.yml'
- 'plugins/updater/src/**'

jobs:
run-integration-tests:
runs-on: ${{ matrix.platform }}

strategy:
fail-fast: false
matrix:
platform: [ubuntu-22.04, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: install stable
uses: dtolnay/rust-toolchain@stable

- name: install Linux dependencies
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y webkit2gtk-4.0 libwebkit2gtk-4.1-dev libayatana-appindicator3-dev libfuse2
- uses: Swatinem/rust-cache@v2

- name: install Tauri CLI
run: cargo install tauri-cli --git https://github.com/tauri-apps/tauri --branch dev

- name: run integration tests
run: cargo test --test '*' -- --ignored

0 comments on commit a6b9da7

Please sign in to comment.