doukutsu-rs/.github/workflows/release.yml

186 lines
5.0 KiB
YAML
Raw Normal View History

2020-09-22 20:21:04 +00:00
name: Release
on: [push]
jobs:
2020-11-25 07:56:19 +00:00
build-linux-x86_64:
2020-09-22 20:21:04 +00:00
runs-on: ubuntu-latest
steps:
2020-09-22 20:43:45 +00:00
- name: Install dependencies
2020-11-25 07:56:19 +00:00
run: sudo apt-get update && sudo apt-get install libasound2-dev libudev-dev pkg-config
2020-09-22 20:43:45 +00:00
2020-09-22 20:48:19 +00:00
- name: Cache Cargo registry
uses: actions/cache@v2
with:
path: ~/.cargo/registry
2020-09-23 13:14:39 +00:00
key: ${{ runner.os }}-stable-cargo-registry
2020-09-22 20:48:19 +00:00
restore-keys: |
${{ runner.os }}-stable-cargo-registry-
- name: Cache Cargo index
uses: actions/cache@v2
with:
path: ~/.cargo/git
2020-09-23 13:14:39 +00:00
key: ${{ runner.os }}-stable-cargo-index
2020-09-22 20:48:19 +00:00
restore-keys: |
${{ runner.os }}-stable-cargo-index-
- name: Cache Cargo build
uses: actions/cache@v2
with:
2020-09-23 13:14:39 +00:00
path: target
key: ${{ runner.os }}-stable-target
2020-09-22 20:48:19 +00:00
restore-keys: |
2020-09-23 13:14:39 +00:00
${{ runner.os }}-stable-target
2020-09-22 20:48:19 +00:00
2020-09-22 20:21:04 +00:00
- name: Checkout sources
uses: actions/checkout@v2
- name: Install latest stable Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
- name: Build
run: cargo build --all --release && strip target/release/doukutsu-rs
2020-09-22 20:43:45 +00:00
- name: Copy executable to root directory
run: cp target/release/doukutsu-rs doukutsu-rs.x86_64
2020-09-22 20:21:04 +00:00
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
2020-11-25 07:56:19 +00:00
name: doukutsu-rs_linux_x86_64
2021-08-13 01:57:46 +00:00
path: doukutsu-rs.x86_64
2020-09-22 20:21:04 +00:00
if-no-files-found: error
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
2021-08-13 01:57:46 +00:00
files: doukutsu-rs.x86_64
2020-09-22 20:21:04 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020-11-25 07:56:19 +00:00
build-windows-x86:
runs-on: windows-latest
steps:
- name: Cache Cargo registry
uses: actions/cache@v2
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-stable-cargo-registry
restore-keys: |
${{ runner.os }}-stable-cargo-registry-
- name: Cache Cargo index
uses: actions/cache@v2
with:
path: ~/.cargo/git
key: ${{ runner.os }}-stable-cargo-index
restore-keys: |
${{ runner.os }}-stable-cargo-index-
- name: Cache Cargo build
uses: actions/cache@v2
with:
path: target
key: ${{ runner.os }}-stable-target
restore-keys: |
${{ runner.os }}-stable-target
- name: Checkout sources
uses: actions/checkout@v2
- name: Install latest stable Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: i686-pc-windows-msvc
default: true
override: true
- name: Build
run: cargo build --target i686-pc-windows-msvc --all --release
- name: Copy executable to root directory
2021-08-13 01:57:46 +00:00
run: cp target/i686-pc-windows-msvc/release/doukutsu-rs.exe doukutsu-rs.x86.exe
2020-11-25 07:56:19 +00:00
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: doukutsu-rs_windows_x86
2021-08-13 01:57:46 +00:00
path: doukutsu-rs.x86.exe
2020-11-25 07:56:19 +00:00
if-no-files-found: error
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
2021-08-13 01:57:46 +00:00
files: doukutsu-rs.x86.exe
2020-11-25 07:56:19 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-windows-x64:
2020-09-22 20:21:04 +00:00
runs-on: windows-latest
steps:
2020-09-22 20:48:19 +00:00
- name: Cache Cargo registry
uses: actions/cache@v2
with:
path: ~/.cargo/registry
2020-09-23 13:14:39 +00:00
key: ${{ runner.os }}-stable-cargo-registry
2020-09-22 20:48:19 +00:00
restore-keys: |
${{ runner.os }}-stable-cargo-registry-
- name: Cache Cargo index
uses: actions/cache@v2
with:
path: ~/.cargo/git
2020-09-23 13:14:39 +00:00
key: ${{ runner.os }}-stable-cargo-index
2020-09-22 20:48:19 +00:00
restore-keys: |
${{ runner.os }}-stable-cargo-index-
- name: Cache Cargo build
uses: actions/cache@v2
with:
2020-09-23 13:14:39 +00:00
path: target
key: ${{ runner.os }}-stable-target
2020-09-22 20:48:19 +00:00
restore-keys: |
2020-09-23 13:14:39 +00:00
${{ runner.os }}-stable-target
2020-09-22 20:48:19 +00:00
2020-09-22 20:21:04 +00:00
- name: Checkout sources
uses: actions/checkout@v2
- name: Install latest stable Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
- name: Build
run: cargo build --all --release
2020-09-22 20:43:45 +00:00
- name: Copy executable to root directory
2021-08-13 01:57:46 +00:00
run: cp target/release/doukutsu-rs.exe doukutsu-rs.x86_64.exe
2020-09-22 20:43:45 +00:00
2020-09-22 20:21:04 +00:00
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
2020-09-22 20:43:45 +00:00
name: doukutsu-rs_windows_x64
2021-08-13 01:57:46 +00:00
path: doukutsu-rs.x86_64.exe
2020-09-22 20:21:04 +00:00
if-no-files-found: error
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
2021-08-13 01:57:46 +00:00
files: doukutsu-rs.x86_64.exe
2020-09-22 20:21:04 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}