From 039a6b250afdc3e666440a4072e8de8dc890068b Mon Sep 17 00:00:00 2001 From: hjenryin <72179072+hjenryin@users.noreply.github.com> Date: Tue, 6 Feb 2024 19:22:22 +0800 Subject: [PATCH] Create reproduce.yml --- .github/workflows/reproduce.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/reproduce.yml diff --git a/.github/workflows/reproduce.yml b/.github/workflows/reproduce.yml new file mode 100644 index 0000000..24fdfa8 --- /dev/null +++ b/.github/workflows/reproduce.yml @@ -0,0 +1,20 @@ +name: reproduce + +on: + workflow_dispatch: + +jobs: + linux: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - run: cd build_linux; ./main + - run: cd build_js; node .\main.js + + windows: + runs-on: windows-latest + steps: + - uses: actions/checkout@v3 + - run: cd build_js; node .\main.js