From 8cbb6d0faf6c59b9c6ae3698080da32deb929929 Mon Sep 17 00:00:00 2001 From: Samuel Ortiz Date: Thu, 5 Mar 2020 12:16:51 +0100 Subject: [PATCH] github: Replace Travis CI with github actions We define 1 workflow with 2 jobs: One for the regular build and another one for creating a release and uploading the corresponding assets. They both run conditionally, depending on the gihtub event that triggered the action. Fixes: #825 Signed-off-by: Samuel Ortiz --- .github/workflows/build.yaml | 54 ++++++++++++++++++++++++++++++++++++ .travis.yml | 16 ----------- 2 files changed, 54 insertions(+), 16 deletions(-) create mode 100644 .github/workflows/build.yaml delete mode 100644 .travis.yml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 000000000..db2c1c6d3 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,54 @@ +name: Cloud Hypervisor Actions +on: [push, create] + +jobs: + build: + if: github.event_name == 'push' + name: Build + runs-on: ubuntu-latest + steps: + - name: Code checkout + uses: actions/checkout@v2 + - name: Install Rust toolchain (stable) + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true + + - name: Build + run: cargo build --release + + 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 + - name: Install Rust toolchain (stable) + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true + - name: Build + run: cargo build --release + - 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 + - name: Upload Release Asset + id: upload-release-asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: target/release/cloud-hypervisor + asset_name: cloud-hypervisor + asset_content_type: application/octet-stream diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 09f0b97da..000000000 --- a/.travis.yml +++ /dev/null @@ -1,16 +0,0 @@ -language: rust - -rust: - - stable - -script: - - cargo build --release - -deploy: - provider: releases - api_key: $GITHUB_OAUTH_TOKEN - file: target/release/cloud-hypervisor - skip_cleanup: true - draft: true - on: - tags: true