Skip to content

Commit 3832ed7

Browse files
committed
Initial commit
0 parents  commit 3832ed7

File tree

8 files changed

+829
-0
lines changed

8 files changed

+829
-0
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: build.yml
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Install latest Rust toolchain
13+
run: |
14+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
15+
16+
- name: Build AppImage
17+
run: |
18+
. "$HOME/.cargo/env"
19+
bash ci/build-appimage.sh

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/target
2+
*.AppImage*
3+
polyfill-glibc/

0 commit comments

Comments
 (0)