Skip to content

Commit 22d3480

Browse files
committed
Iterate
1 parent df04a13 commit 22d3480

3 files changed

Lines changed: 13 additions & 1 deletion

File tree

.github/workflows/build-and-test.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,12 @@ jobs:
238238
matrix:
239239
sqlcipher: [system, static]
240240
arch: [amd64, arm64]
241+
runAllTests:
242+
- ${{ github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'X-Run-All-Tests') }}
243+
# We ship static sqlcipher builds, so delegate testing the system builds to the merge queue
244+
exclude:
245+
- runAllTests: false
246+
sqlcipher: system
241247
with:
242248
sqlcipher: ${{ matrix.sqlcipher }}
243249
arch: ${{ matrix.arch }}

.github/workflows/build_desktop_test.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,12 @@ jobs:
9090
$PREFIX pnpm -C apps/desktop test \
9191
${{ runner.os != 'Linux' && '--ignore-snapshots' || '' }} \
9292
${{ inputs.blob_report == false && '--reporter=html' || '' }} \
93-
${{ inputs.args }}
93+
$ARGS
9494
env:
9595
PREFIX: ${{ runner.os == 'Linux' && 'xvfb-run' || '' }}
9696
PW_TAG: ${{ inputs.project }}
9797
ELEMENT_DESKTOP_EXECUTABLE: ${{ steps.executable.outputs.path }}
98+
ARGS: ${{ inputs.args }}
9899

99100
- name: Upload blob report
100101
if: always() && inputs.blob_report

apps/desktop/project.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
3+
"projectType": "application",
4+
"implicitDependencies": ["element-web"]
5+
}

0 commit comments

Comments
 (0)