diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 869c4fbd..ff249136 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -11,9 +11,18 @@ jobs: steps: - name: Check out code uses: actions/checkout@v4 + - name: Cache Darwin sysroot + id: cache-sysroot + uses: actions/cache@v3 + with: + path: | + .sysroot/darwin.tar.gz + key: darwin-sysroot-${{ runner.os }}-${{ hashFiles('.github/workflows/populate_darwin_sysroot.sh') }} - name: Populate Darwin sysroot + if: steps.cache-sysroot.outputs.cache-hit != 'true' run: bash .github/workflows/populate_darwin_sysroot.sh - name: Create Darwin sysroot tarball + if: steps.cache-sysroot.outputs.cache-hit != 'true' run: tar -czvf .sysroot/darwin.tar.gz -C .sysroot darwin - name: Upload Darwin sysroot tarball uses: actions/upload-artifact@v4 @@ -32,7 +41,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.20.x + go-version: 1.23.x - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Download Darwin sysroot tarball diff --git a/.goreleaser.yaml b/.goreleaser.yaml index bd4efc18..0e9b8f0e 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -16,7 +16,9 @@ before: builds: - id: llgo-darwin-amd64 + dir: compiler main: ./cmd/llgo + binary: bin/llgo flags: - -tags=darwin,amd64,byollvm ldflags: @@ -32,7 +34,9 @@ builds: - darwin_amd64 mod_timestamp: "{{.CommitTimestamp}}" - id: llgo-darwin-arm64 + dir: compiler main: ./cmd/llgo + binary: bin/llgo flags: - -tags=darwin,arm64,byollvm ldflags: @@ -48,7 +52,9 @@ builds: - darwin_arm64 mod_timestamp: "{{.CommitTimestamp}}" - id: llgo-linux-amd64 + dir: compiler main: ./cmd/llgo + binary: bin/llgo flags: - -tags=linux,amd64,byollvm ldflags: @@ -64,7 +70,9 @@ builds: - linux_amd64 mod_timestamp: "{{.CommitTimestamp}}" - id: llgo-linux-arm64 + dir: compiler main: ./cmd/llgo + binary: bin/llgo flags: - -tags=linux,arm64,byollvm ldflags: @@ -88,6 +96,7 @@ archives: files: - LICENSE - README.md + - runtime checksum: name_template: "{{.ProjectName}}{{.Version}}.checksums.txt"