Skip to content

Commit

Permalink
Add GitHub Actions CI (#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k authored Nov 14, 2023
1 parent 5336fc9 commit f5f8135
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
45 changes: 45 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
on:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
platform:
- c
- js
- wasm
- wasi
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: 11
distribution: adopt
- uses: gradle/gradle-build-action@v2
- if: ${{ matrix.platform == 'wasi' }}
uses: bytecodealliance/actions/wasmtime/setup@v1
- if: ${{ matrix.platform == 'wasi' }}
run: |
mkdir -p "$HOME/.wasmtime/bin/"
echo 'wasmtime "$@"'> "$HOME/.wasmtime/bin/wasmtime"
chmod +x "$HOME/.wasmtime/bin/wasmtime"
- run: |
platforms=("c" "js" "wasm" "wasi")
args=()
for v in "${platforms[@]}"
do
if [[ "${{ matrix.platform }}" != "$v" ]]; then
args+=("-Pteavm.tests.${v}=false")
fi
done
echo "${args[@]}"
./gradlew "${args[@]}" build
- uses: actions/upload-artifact@v3
if: failure()
with:
name: "test-reports-${{ matrix.platform }}"
path: "tests/build/reports/tests/test"
2 changes: 1 addition & 1 deletion tests/compile-c-unix-fast.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export LC_ALL=C
SOURCE_DIR=$(pwd)
gcc -g -O0 -lrt -lm all.c -o run_test
gcc -g -O0 -lrt all.c -o run_test -lm

0 comments on commit f5f8135

Please sign in to comment.