fungistore: meta and filesystem implementation (#28) #18
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
on: | |
push: | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 | |
name: Create Release | |
jobs: | |
build: | |
name: Releasing rfs | |
# we use 18.04 to be compatible with libc version on zos | |
runs-on: ubuntu-latest | |
steps: | |
- name: Prepare | |
run: | | |
sudo apt-get update | |
sudo apt-get install musl-dev musl-tools | |
sudo apt-get install capnproto | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
name: Install toolchain | |
with: | |
toolchain: stable | |
target: x86_64-unknown-linux-musl | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release --target=x86_64-unknown-linux-musl --features build-binary | |
- name: Strip | |
run: | | |
strip target/x86_64-unknown-linux-musl/release/rfs | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- 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/x86_64-unknown-linux-musl/release/rfs | |
asset_name: rfs | |
asset_content_type: application/x-pie-executable |