1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-11 18:24:43 +02:00
This commit is contained in:
Laurent Cozic 2022-11-11 12:53:29 +00:00
parent 54df603d6d
commit f895e939a2
2 changed files with 16 additions and 3 deletions

View File

@ -1,8 +1,23 @@
# The goal of this action is to compile the Android debug build. That should
# tell us automatically if something got broken when a dependency was changed.
name: react-native-android-build-apk name: react-native-android-build-apk
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
install-and-test: pre_job:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
BuildAndroidDebug:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Install Linux dependencies - name: Install Linux dependencies

View File

@ -2,9 +2,7 @@ name: Joplin Continuous Integration
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
pre_job: pre_job:
# continue-on-error: true # Uncomment once integration is finished
runs-on: ubuntu-latest runs-on: ubuntu-latest
# Map a step output to a job output
outputs: outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }} should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps: steps: