Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(github): uncomment integration workflow job
Browse files Browse the repository at this point in the history
ivangabriele committed Aug 25, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
1 parent 9b2d705 commit 61dd22e
Showing 1 changed file with 35 additions and 35 deletions.
70 changes: 35 additions & 35 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -21,38 +21,38 @@ jobs:
uses: actions/checkout@v4
with:
submodules: true
# # https://github.com/Swatinem/rust-cache#example-usage
# - uses: Swatinem/rust-cache@v2
# with:
# cache-on-failure: true
# key: integration_e2e_debian-latest
# prefix-key: rust-cache
# shared-key: v0
# workspaces: './src-tauri -> target'
# - name: Setup Node.js
# uses: actions/setup-node@v4
# with:
# cache: yarn
# node-version: 20
# - name: Install Debian dependencies
# run: |
# apt-get update
# apt-get install -y dbus-x11
# - name: Install ClamAV
# run: |
# apt-get install -y clamav
# - name: Print ClamAV version
# run: clamscan -V
# - name: Install Node.js dependencies
# run: yarn --frozen-lockfile
# - name: Build binary
# run: yarn bundle:bin
# - name: Run tests
# uses: nick-fields/retry@v3
# with:
# timeout_seconds: 600
# max_attempts: 3
# retry_on: error
# command: |
# fuser -n tcp -k 4445
# yarn test:e2e
# https://github.com/Swatinem/rust-cache#example-usage
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
key: integration_e2e_debian-latest
prefix-key: rust-cache
shared-key: v0
workspaces: './src-tauri -> target'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
cache: yarn
node-version: 20
- name: Install Debian dependencies
run: |
apt-get update
apt-get install -y dbus-x11
- name: Install ClamAV
run: |
apt-get install -y clamav
- name: Print ClamAV version
run: clamscan -V
- name: Install Node.js dependencies
run: yarn --frozen-lockfile
- name: Build binary
run: yarn bundle:bin
- name: Run tests
uses: nick-fields/retry@v3
with:
timeout_seconds: 600
max_attempts: 3
retry_on: error
command: |
fuser -n tcp -k 4445
yarn test:e2e

0 comments on commit 61dd22e

Please sign in to comment.