From 73de67d7e21406c677c9955078644b6b6fd6251b Mon Sep 17 00:00:00 2001 From: alyssa Date: Fri, 6 Sep 2024 16:19:41 +0900 Subject: [PATCH] test --- .github/workflows/ci-runner.yml | 2 +- .github/workflows/ci.yml | 2 +- ci/Dockerfile | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-runner.yml b/.github/workflows/ci-runner.yml index 2f76c9e2..9b68196c 100644 --- a/.github/workflows/ci-runner.yml +++ b/.github/workflows/ci-runner.yml @@ -24,4 +24,4 @@ jobs: DISPATCH_DATA: ${{ inputs.dispatchData }} steps: - - run: /ci/run_ci.py + - run: /run_ci.py diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a67653b6..37b7d3e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,4 +37,4 @@ jobs: OLD_SHA: ${{ github.event.before }} IS_FORCE_PUSH: ${{ github.event.forced }} steps: - - run: /ci/spawn_jobs.py + - run: /spawn_jobs.py diff --git a/ci/Dockerfile b/ci/Dockerfile index a3955fc6..92c31fa4 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -1,3 +1,4 @@ FROM alpine:latest RUN apk add python3 docker git -COPY ci . +COPY ci/spawn_jobs.py . +COPY ci/run_ci.py .