diff --git a/.gitea/workflows/ci-dev.yaml b/.gitea/workflows/ci-dev.yaml index d268576..3478420 100644 --- a/.gitea/workflows/ci-dev.yaml +++ b/.gitea/workflows/ci-dev.yaml @@ -44,7 +44,7 @@ jobs: - name: Self-host compile El compiler with gen2 (gen3) run: | mkdir -p dist/platform - dist/elc-gen2 el-compiler/src/compiler.el > dist/elc-gen3.c + dist/elc-gen2 elc-cli.el > dist/elc-gen3.c gcc -O2 \ -I el-compiler/runtime \ dist/elc-gen3.c \ diff --git a/.gitea/workflows/ci-stage.yaml b/.gitea/workflows/ci-stage.yaml index 64b59b7..94c6b60 100644 --- a/.gitea/workflows/ci-stage.yaml +++ b/.gitea/workflows/ci-stage.yaml @@ -54,7 +54,7 @@ jobs: - name: Self-host compile El compiler with gen2 (gen3) run: | mkdir -p dist/platform - dist/elc-gen2 el-compiler/src/compiler.el > dist/elc-gen3.c + dist/elc-gen2 elc-cli.el > dist/elc-gen3.c gcc -O2 \ -I el-compiler/runtime \ dist/elc-gen3.c \ diff --git a/.gitea/workflows/sdk-release.yaml b/.gitea/workflows/sdk-release.yaml index 47259bd..33106d1 100644 --- a/.gitea/workflows/sdk-release.yaml +++ b/.gitea/workflows/sdk-release.yaml @@ -54,7 +54,7 @@ jobs: - name: Self-host compile El compiler with gen2 (gen3) run: | mkdir -p dist/platform - dist/elc-gen2 el-compiler/src/compiler.el > dist/elc-gen3.c + dist/elc-gen2 elc-cli.el > dist/elc-gen3.c gcc -O2 \ -I el-compiler/runtime \ dist/elc-gen3.c \