forked from Redrield/Conductor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
104 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
name: Build Status | ||
on: [push, pull_request, workflow_dispatch] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
CI: false | ||
|
||
jobs: | ||
build-ubuntu: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: rust-toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
components: clippy | ||
- name: Install Dependencies | ||
run: | | ||
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash - | ||
sudo apt-get install -y nodejs libudev-dev libx11-dev libxi-dev libpango1.0-dev libatk1.0-dev libsoup2.4-dev libgtk-3-dev libwebkit2gtk-4.0-dev | ||
- name: Install Cargo tools | ||
run: | | ||
cargo install cargo-bundle | ||
- name: Build Frontend | ||
run: | | ||
make setup && make frontend | ||
- name: Build DEB | ||
run: | | ||
cargo bundle --format deb --release | ||
- name: Build RPM | ||
uses: ./rpm-docker-action | ||
- name: rust-clippy-check | ||
uses: actions-rs/clippy-check@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
name: Ubuntu | ||
- name: Archive Raw Application | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Conductor_ubuntu-latest | ||
path: target/release/conductor | ||
- name: Archive DEB | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Conductor.deb | ||
path: target/release/bundle/deb/*.deb | ||
- name: Archive RPM | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Conductor.rpm | ||
path: target/release/rpmbuild/RPMS/x86_64/*.rpm | ||
build-macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: rust-toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
components: clippy | ||
- name: Install Cargo tools | ||
run: | | ||
cargo install cargo-bundle | ||
- name: Build Application | ||
run: | | ||
make setup && make release | ||
- name: Bundle Application | ||
run: | | ||
cargo bundle --format osx --release | ||
tar -cvf target/release/bundle/osx/Conductor.app.tar.gz target/release/bundle/osx/Conductor.app | ||
- name: rust-clippy-check | ||
uses: actions-rs/clippy-check@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
name: macOS | ||
- name: Archive Application | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Conductor.app.tar.gz | ||
path: target/release/bundle/osx/Conductor.app.tar.gz | ||
fmt: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: rust-toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
components: rustfmt | ||
- name: Install Dependencies | ||
run: | | ||
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash - | ||
sudo apt-get install -y nodejs libudev-dev libx11-dev libxi-dev libpango1.0-dev libatk1.0-dev libsoup2.4-dev libgtk-3-dev libwebkit2gtk-4.0-dev | ||
- name: Build frontend | ||
run: | | ||
make setup && make frontend | ||
- name: Formatter | ||
uses: mbrobbel/rustfmt-check@master | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} |