build(snap): Disable arm64 snap build. (#935)

* build(snap): Disable arm64 snap build.

* build(snap): Add cancel workflow

* docs(issues): Close invalid issues.

* build(snap): Move if to the first job
pull/933/head
samwiseg0 4 years ago committed by GitHub
parent e118501bf1
commit 577cbcc7fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -14,6 +14,6 @@ jobs:
support-label: 'invalid:template-incomplete'
issue-comment: >
:wave: @{issue-author}, please edit your issue and follow the template provided.
close-issue: false
lock-issue: false
close-issue: true
lock-issue: true
issue-lock-reason: 'resolved'

@ -5,10 +5,19 @@ on:
branches: [develop]
jobs:
jobs:
name: Job Check
runs-on: ubuntu-20.04
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.8.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
test:
name: Lint & Test Build
needs: jobs
runs-on: ubuntu-20.04
if: "!contains(github.event.head_commit.message, '[skip ci]')"
container: node:12.18-alpine
steps:
- name: checkout
@ -30,7 +39,7 @@ jobs:
matrix:
architecture:
- amd64
- arm64
#- arm64 Disable until there is a workaround or fix.
- armhf
steps:
- name: Checkout Code

Loading…
Cancel
Save