Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
soyuka committed Sep 25, 2023
1 parent 513f284 commit 86c77fb
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 88 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/build.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build Docker image
on:
pull_request:
branches:
- main
jobs:
bake:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: false
tags: soyuka/php-wasm:latest
58 changes: 0 additions & 58 deletions .github/workflows/release.yml

This file was deleted.

5 changes: 2 additions & 3 deletions source/phpw.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ int main() {

void phpw_flush()
{
// output buffers are disabled by default so we don't need to flush
// fflush(stdout);
fprintf(stdout, "\n");
// fflush(stderr);
fflush(stdout);
fprintf(stderr, "\n");
fflush(stderr);
}

char *EMSCRIPTEN_KEEPALIVE phpw_exec(char *code)
Expand Down

0 comments on commit 86c77fb

Please sign in to comment.