disable gh action env #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
workflow_call: | |
workflow_dispatch: | |
push: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: macos-14 | |
triple: aarch64-apple-darwin | |
# - os: macos-13 | |
# triple: x86_64-apple-darwin | |
# - os: buildjet-32vcpu-ubuntu-2004 | |
# triple: x86_64-unknown-linux-gnu | |
# - os: buildjet-32vcpu-ubuntu-2204-arm | |
# triple: aarch64-unknown-linux-gnu | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install nightly toolchain | |
id: rustc-toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly-2024-01-25 | |
default: true | |
- uses: lukka/[email protected] | |
- name: Show rust version | |
run: | | |
cargo version | |
rustup toolchain list | |
- name: Check out a16z/rust | |
uses: actions/checkout@v3 | |
with: | |
repository: a16z/rust | |
submodules: "recursive" | |
path: rust | |
fetch-depth: 0 | |
ref: ci | |
- name: Build | |
run: make build-toolchain | |
working-directory: rust | |
- name: Archive | |
run: tar -czvf rust-toolchain-${{ matrix.triple }}.tar.gz build/host/stage2 | |
working-directory: rust | |
- name: Generate tag name | |
id: tag | |
run: | | |
echo "::set-output name=release_tag::nightly-${GITHUB_SHA}" | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ steps.tag.outputs.release_tag }} | |
prerelease: true | |
files: | | |
rust-toolchain-${{ matrix.triple }}.tar.gz | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |