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 7cfa124
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 88 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/build.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build Docker image
on:
pull_request:
branches:
- main
jobs:
bake:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# -
# name: Login to DockerHub
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
-
uses: docker/bake-action@v4
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 7cfa124

Please sign in to comment.