From 014c9b7faa299103c7b25829bbf39ea38a2b4645 Mon Sep 17 00:00:00 2001 From: Sam Zhou Date: Mon, 18 Mar 2024 09:47:24 -0700 Subject: [PATCH] Update build_and_test.yml --- .github/workflows/build_and_test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 668d1962af3..1ec18eb8707 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -303,6 +303,10 @@ jobs: FLOW_RUNTESTS_PARALLELISM: 8 steps: - uses: actions/checkout@v3.6.0 + - uses: actions/download-artifact@v3.0.2 + with: + name: build_linux_bin + path: bin/linux - name: Run tests run: ./runtests.sh bin/linux/flow | cat runtests_macos: @@ -314,6 +318,10 @@ jobs: with: xcode-version: '13.4' - uses: actions/checkout@v3.6.0 + - uses: actions/download-artifact@v3.0.2 + with: + name: build_macos_bin + path: bin/macos - name: Run tests run: ./runtests.sh bin/macos/flow | cat tool_test_linux: @@ -324,6 +332,10 @@ jobs: - build_linux steps: - uses: actions/checkout@v3.6.0 + - uses: actions/download-artifact@v3.0.2 + with: + name: build_linux_bin + path: bin/linux - name: Install tool deps from yarn run: (cd packages/flow-dev-tools && yarn install | cat) - name: Run tool tests @@ -337,6 +349,10 @@ jobs: with: xcode-version: '13.4' - uses: actions/checkout@v3.6.0 + - uses: actions/download-artifact@v3.0.2 + with: + name: build_macos_bin + path: bin/macos - name: Install tool deps from yarn run: (cd packages/flow-dev-tools && yarn install | cat) - name: Run tool tests @@ -347,6 +363,10 @@ jobs: - build_win steps: - uses: actions/checkout@v3.6.0 + - uses: actions/download-artifact@v3.0.2 + with: + name: build_win_bin + path: bin/win64 - name: Install tool deps from yarn run: |- cd packages/flow-dev-tools