Skip to content

Commit 2f77093

Browse files
committed
Init gitpod.zellij
0 parents  commit 2f77093

File tree

11 files changed

+679
-0
lines changed

11 files changed

+679
-0
lines changed

.cargo/config.toml.bak

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[build]
2+
target = "wasm32-wasi"

.github/workflows/release.yaml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Release
2+
3+
permissions:
4+
contents: write
5+
6+
on:
7+
push:
8+
tags:
9+
- v[0-9]+.*
10+
11+
jobs:
12+
create-release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- uses: taiki-e/create-gh-release-action@v1
17+
with:
18+
# (required) GitHub token for creating GitHub Releases.
19+
token: ${{ secrets.GITHUB_TOKEN }}
20+
21+
upload-assets:
22+
strategy:
23+
matrix:
24+
include:
25+
- target: x86_64-unknown-linux-musl
26+
os: ubuntu-latest
27+
build_tool: cross
28+
runs-on: ${{ matrix.os }}
29+
steps:
30+
- uses: actions/checkout@v3
31+
- uses: taiki-e/install-action@cross
32+
- uses: taiki-e/upload-rust-binary-action@v1
33+
with:
34+
# (required) Comma-separated list of binary names (non-extension portion of filename) to build and upload.
35+
# Note that glob pattern is not supported yet.
36+
bin: gitpod_zellij
37+
# (optional) Target triple, default is host triple.
38+
target: ${{ matrix.target }}
39+
# (optional) Tool to build binaries (cargo, or cross)
40+
build_tool: ${{ matrix.build_tool }}
41+
# (required) GitHub token for uploading assets to GitHub Releases.
42+
token: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

.gitpod.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
image: gitpod/workspace-rust:latest
2+
3+
tasks:
4+
- name: Test plugin
5+
init: cargo build # cache build artifacts using prebuild
6+
command: |
7+
cargo run &
8+
zellij

0 commit comments

Comments
 (0)