Delete .circleci directory

This commit is contained in:
Anirudh Sevugan 2025-07-13 18:51:05 -05:00 committed by GitHub
parent df92a8f998
commit 385396f920
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,30 +0,0 @@
version: 2.1
jobs:
build_arm64_linux:
docker:
- image: circleci/node:22 # Node.js 22 ARM64-compatible image
platform: linux/arm64
working_directory: ~/simpliplay-desktop/simpliplay
steps:
- checkout
- run:
name: Install dependencies
command: npm install
- run:
name: Install snapcraft
command: sudo snap install snapcraft --classic
- run:
name: Build Snap and AppImage (ARM64)
command: npx electron-builder --linux --arm64
- store_artifacts:
path: dist/*.snap
destination: snaps
- store_artifacts:
path: dist/*.AppImage
destination: appimages
workflows:
build_and_test:
jobs:
- build_arm64_linux