This repository has been archived by the owner on Nov 10, 2022. It is now read-only.
forked from WebAssembly/wasi-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
6 changed files
with
66 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Asterius | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
|
||
build: | ||
name: build | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
|
||
- name: checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
submodules: recursive | ||
|
||
- name: build | ||
run: | | ||
podman run \ | ||
--network host \ | ||
--pull always \ | ||
--rm \ | ||
--volume $(pwd):$(pwd) \ | ||
--workdir $(pwd) \ | ||
debian:sid-slim \ | ||
./asterius_build.sh | ||
- name: upload-artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: dist-asterius | ||
path: dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
|
||
set -euo pipefail | ||
|
||
apt update | ||
apt full-upgrade -y | ||
apt install -y \ | ||
build-essential \ | ||
cmake \ | ||
git \ | ||
ninja-build \ | ||
python3 | ||
|
||
make package |
Submodule llvm-project
updated
23679 files
Submodule wasi-libc
updated
3 files
+8 −4 | Makefile | |
+6 −6 | libc-top-half/musl/include/pthread.h | |
+47 −0 | pthread/pthread.c |