Skip to content

Commit 9e8b9bc

Browse files
Arshia001charmitro
authored andcommitted
Merge WASIX changes in
1 parent 9fc6b43 commit 9e8b9bc

File tree

76 files changed

+11712
-405
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+11712
-405
lines changed

.github/workflows/ci.yml

Lines changed: 233 additions & 228 deletions
Large diffs are not rendered by default.

.github/workflows/release.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Release
2+
on:
3+
push:
4+
tags:
5+
- '*'
6+
jobs:
7+
8+
build:
9+
uses: ./.github/workflows/ci.yml
10+
11+
release:
12+
needs: build
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: write
16+
steps:
17+
- name: Download artifacts
18+
uses: actions/download-artifact@v3
19+
with:
20+
path: artifacts
21+
- name: Compress artifacts
22+
shell: bash
23+
run: |
24+
ls -lha ./artifacts
25+
mkdir assets
26+
for DIR in $(ls ./artifacts); do
27+
tar czf "assets/$DIR.tar.gz" -C "artifacts/$DIR" .
28+
done
29+
ls -lha ./assets
30+
- name: Create release
31+
env:
32+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33+
run: |
34+
echo "Installing gh CLI..."
35+
curl -L https://github.com/cli/cli/releases/download/v2.17.0/gh_2.17.0_linux_amd64.tar.gz | tar xvz --strip-components=2 --exclude=man
36+
chmod +x ./gh
37+
38+
./gh release create --repo "$GITHUB_REPOSITORY" "$GITHUB_REF_NAME" ./assets/*
39+

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Session.vim
3434
!/tests/run-make/thumb-none-qemu/example/.cargo
3535

3636
## Configuration
37-
/config.toml
37+
#/config.toml
3838
/Makefile
3939
config.mk
4040
config.stamp

Cargo.lock

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6342,3 +6342,8 @@ dependencies = [
63426342
"quote",
63436343
"syn 2.0.87",
63446344
]
6345+
6346+
[[patch.unused]]
6347+
name = "libc"
6348+
version = "0.2.155"
6349+
source = "git+https://github.com/wasix-org/libc.git?branch=wasix-0.2.155#cbaadd9965b725ba984a371b817e559d9da36187"

0 commit comments

Comments
 (0)