2020-04-23 10:59:18 +00:00
|
|
|
name: Cloud Hypervisor Release
|
|
|
|
on: [create]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
if: github.event_name == 'create' && github.event.ref_type == 'tag'
|
|
|
|
name: Release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Code checkout
|
|
|
|
uses: actions/checkout@v2
|
2022-03-03 15:20:20 +00:00
|
|
|
- name: Install musl-gcc
|
|
|
|
run: sudo apt install -y musl-tools
|
2021-10-14 15:51:35 +00:00
|
|
|
- name: Create release directory
|
|
|
|
run: rsync -rv --exclude=.git . ../cloud-hypervisor-${{ github.event.ref }}
|
2020-04-20 06:07:17 +00:00
|
|
|
- name: Install Rust toolchain (x86_64-unknown-linux-gnu)
|
2020-04-23 10:59:18 +00:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2022-04-11 08:57:35 +00:00
|
|
|
toolchain: 1.58
|
2020-04-20 06:07:17 +00:00
|
|
|
target: x86_64-unknown-linux-gnu
|
|
|
|
- name: Install Rust toolchain (x86_64-unknown-linux-musl)
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2022-04-11 08:57:35 +00:00
|
|
|
toolchain: 1.58
|
2020-04-20 06:07:17 +00:00
|
|
|
target: x86_64-unknown-linux-musl
|
2020-04-23 10:59:18 +00:00
|
|
|
- name: Build
|
2022-04-13 13:55:07 +00:00
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
toolchain: 1.58
|
|
|
|
command: build
|
|
|
|
args: --all --release --target=x86_64-unknown-linux-gnu
|
2020-04-20 06:07:17 +00:00
|
|
|
- name: Static Build
|
2022-04-13 13:55:07 +00:00
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
toolchain: 1.58
|
|
|
|
command: build
|
|
|
|
args: --all --release --target=x86_64-unknown-linux-musl
|
2020-05-07 09:35:57 +00:00
|
|
|
- name: Strip cloud-hypervisor binaries
|
|
|
|
run: strip target/*/release/cloud-hypervisor
|
2021-09-09 13:52:29 +00:00
|
|
|
- name: Install Rust toolchain (aarch64-unknown-linux-musl)
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2022-04-11 08:57:35 +00:00
|
|
|
toolchain: 1.58
|
2021-09-09 13:52:29 +00:00
|
|
|
target: aarch64-unknown-linux-musl
|
|
|
|
override: true
|
|
|
|
- name: Static Build (AArch64)
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
use-cross: true
|
|
|
|
command: build
|
|
|
|
args: --all --release --target=aarch64-unknown-linux-musl
|
2021-10-14 15:51:35 +00:00
|
|
|
- name: Vendor
|
|
|
|
working-directory: ../cloud-hypervisor-${{ github.event.ref }}
|
|
|
|
run: |
|
|
|
|
mkdir ../vendor-cargo-home
|
|
|
|
export CARGO_HOME=$(realpath ../vendor-cargo-home)
|
|
|
|
mkdir .cargo
|
|
|
|
cargo vendor > .cargo/config.toml
|
2020-04-23 10:59:18 +00:00
|
|
|
- name: Create Release
|
|
|
|
id: create_release
|
|
|
|
uses: actions/create-release@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
tag_name: ${{ github.ref }}
|
|
|
|
release_name: ${{ github.ref }}
|
|
|
|
draft: true
|
|
|
|
prerelease: true
|
2021-10-14 15:51:35 +00:00
|
|
|
- name: Create vendored source archive
|
|
|
|
working-directory: ../
|
|
|
|
run: tar cJf cloud-hypervisor-${{ github.event.ref }}.tar.xz cloud-hypervisor-${{ github.event.ref }}
|
|
|
|
- name: Upload cloud-hypervisor vendored source archive
|
|
|
|
id: upload-release-cloud-hypervisor-vendored-sources
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ../cloud-hypervisor-${{ github.event.ref }}.tar.xz
|
|
|
|
asset_name: cloud-hypervisor-${{ github.event.ref }}.tar.xz
|
|
|
|
asset_content_type: application/x-xz
|
2020-04-23 10:59:18 +00:00
|
|
|
- name: Upload cloud-hypervisor
|
|
|
|
id: upload-release-cloud-hypervisor
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
2020-04-20 06:07:17 +00:00
|
|
|
asset_path: target/x86_64-unknown-linux-gnu/release/cloud-hypervisor
|
2020-04-23 10:59:18 +00:00
|
|
|
asset_name: cloud-hypervisor
|
|
|
|
asset_content_type: application/octet-stream
|
2020-04-20 06:07:17 +00:00
|
|
|
- name: Upload static cloud-hypervisor
|
|
|
|
id: upload-release-static-cloud-hypervisor
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: target/x86_64-unknown-linux-musl/release/cloud-hypervisor
|
|
|
|
asset_name: cloud-hypervisor-static
|
|
|
|
asset_content_type: application/octet-stream
|
2020-04-23 10:59:18 +00:00
|
|
|
- name: Upload ch-remote
|
|
|
|
id: upload-release-ch-remote
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
2020-04-20 06:07:17 +00:00
|
|
|
asset_path: target/x86_64-unknown-linux-gnu/release/ch-remote
|
2020-04-23 10:59:18 +00:00
|
|
|
asset_name: ch-remote
|
|
|
|
asset_content_type: application/octet-stream
|
2021-12-07 09:45:35 +00:00
|
|
|
- name: Upload static-ch-remote
|
|
|
|
id: upload-release-static-ch-remote
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: target/x86_64-unknown-linux-musl/release/ch-remote
|
|
|
|
asset_name: ch-remote-static
|
|
|
|
asset_content_type: application/octet-stream
|
2021-09-09 13:52:29 +00:00
|
|
|
- name: Upload static AArch64 cloud-hypervisor
|
|
|
|
id: upload-release-static-aarch64-cloud-hypervisor
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: target/aarch64-unknown-linux-musl/release/cloud-hypervisor
|
|
|
|
asset_name: cloud-hypervisor-static-aarch64
|
|
|
|
asset_content_type: application/octet-stream
|
|
|
|
- name: Upload static AArch64 ch-remote
|
|
|
|
id: upload-release-static-aarch64-ch-remote
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: target/aarch64-unknown-linux-musl/release/ch-remote
|
|
|
|
asset_name: ch-remote-static-aarch64
|
|
|
|
asset_content_type: application/octet-stream
|