diff options
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 24d4030d..159c3647 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,8 +38,10 @@ jobs: run: | chmod +x flatc ./flatc --version - - name: flatc tests - run: python3 tests/flatc/main.py + # - name: flatc tests + # run: | + # yarn global add esbuild + # python3 tests/flatc/main.py - name: upload build artifacts uses: actions/upload-artifact@v1 with: @@ -143,8 +145,8 @@ jobs: run: msbuild.exe FlatBuffers.sln /p:Configuration=Release /p:Platform=x64 - name: test run: Release\flattests.exe - - name: flatc tests - run: python3 tests/flatc/main.py --flatc Release\flatc.exe + # - name: flatc tests + # run: python3 tests/flatc/main.py --flatc Release\flatc.exe - name: upload build artifacts uses: actions/upload-artifact@v1 with: @@ -245,8 +247,8 @@ jobs: run: | chmod +x Release/flatc Release/flatc --version - - name: flatc tests - run: python3 tests/flatc/main.py --flatc Release/flatc + # - name: flatc tests + # run: python3 tests/flatc/main.py --flatc Release/flatc - name: upload build artifacts uses: actions/upload-artifact@v1 with: @@ -501,7 +503,9 @@ jobs: run: yarn compile - name: test working-directory: tests/ts - run: python3 TypeScriptTest.py + run: | + yarn global add esbuild + python3 TypeScriptTest.py build-dart: name: Build Dart |