From 481e6fe28cd8501f55e14075497f1fb549abc136 Mon Sep 17 00:00:00 2001 From: Kevin Su Date: Tue, 23 Apr 2024 07:37:47 +0800 Subject: [PATCH] test Signed-off-by: Kevin Su --- .github/workflows/checks_new.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/checks_new.yml b/.github/workflows/checks_new.yml index 5de9dfa9f..33f73f1a9 100644 --- a/.github/workflows/checks_new.yml +++ b/.github/workflows/checks_new.yml @@ -18,10 +18,10 @@ concurrency: jobs: serialize_examples: runs-on: "ubuntu-latest" - name: Serialize Flytesnacks workflow + name: Serialize strategy: matrix: - example: ["examples/k8s_spark_plugin"] + example: ["k8s_spark_plugin"] steps: - uses: actions/checkout@v4 - name: Set up Python @@ -40,7 +40,7 @@ jobs: pip install uv uv venv source .venv/bin/activate - pip install --pre flytekitplugins-spark flytekitplugins-envd + pip install --pre numpy<2.0.0 flytekitplugins-spark flytekitplugins-envd - name: Login to GitHub Container Registry if: ${{ github.event_name == 'push' }} uses: docker/login-action@v1 @@ -50,5 +50,5 @@ jobs: password: ${{ secrets.FLYTE_BOT_PAT }} - name: Pyflyte package run: | - cd ${{ matrix.example }} + cd examples/${{ matrix.example }} pyflyte --pkgs k8s_spark_plugin package -o spark-package.tgz --force --fast