diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 6a1f859c299..ecd9cc1ac2d 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -11,13 +11,13 @@ jobs: with: fetch-depth: 100 - name: Build - run: ./x.py build --stage=1 + run: ./x.py build - name: Remove symlinks run: | - rm build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/src/rust - rm build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/rustc-src/rust + rm build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/src/rust + rm build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/rustc-src/rust - name: Upload compiler uses: forgejo/upload-artifact@v4 with: name: compiler.zip - path: build/x86_64-unknown-linux-gnu/stage1 + path: build/x86_64-unknown-linux-gnu/stage2 diff --git a/config.toml b/config.toml index 753d1a763fc..c71e5c4be1a 100644 --- a/config.toml +++ b/config.toml @@ -1,6 +1,10 @@ change-id = 131075 -profile = 'compiler' +profile = 'dist' [build] host = ["x86_64-unknown-linux-gnu"] target = ["x86_64-unknown-linux-gnu", "x86_64-unknown-os"] +extended = false + +[llvm] +download-ci-llvm = true