-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from svsticky/refactor
Frontend and backend rewrite
- Loading branch information
Showing
85 changed files
with
6,196 additions
and
2,761 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,83 @@ | ||
name: release | ||
on: | ||
push: | ||
tags: | ||
- '**' | ||
|
||
jobs: | ||
build-server-musl: | ||
name: build-server-musl | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: rustup toolchain install stable --profile minimal | ||
- run: rustup target add x86_64-unknown-linux-musl --toolchain stable | ||
- run: sudo apt install gcc musl-tools cmake clang | ||
- uses: Swatinem/[email protected] | ||
with: | ||
workspaces: "server" | ||
save-if: ${{ github.ref == 'refs/heads/master' }} | ||
- run: cargo build --release --target x86_64-unknown-linux-musl | ||
working-directory: server | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: server-x86_64-unknown-linux-musl | ||
path: ./server/target/x86_64-unknown-linux-musl/release/digidecs | ||
|
||
build-frontend: | ||
name: build-frontend | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set Node.js 21 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 21.x | ||
- name: Run install | ||
uses: borales/actions-yarn@v4 | ||
with: | ||
dir: frontend | ||
cmd: install | ||
- name: Build | ||
uses: borales/actions-yarn@v4 | ||
with: | ||
dir: frontend | ||
cmd: build | ||
- run: tar -czf frontend.tar.gz dist/* | ||
working-directory: frontend | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: frontend.tar.gz | ||
path: ./frontend/frontend.tar.gz | ||
|
||
|
||
create-release: | ||
name: create-release | ||
needs: | ||
- build-server-musl | ||
- build-frontend | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download all workflow run artifacts | ||
uses: actions/download-artifact@v3 | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Release ${{ github.ref }} | ||
draft: false | ||
|
||
- run: mv server-x86_64-unknown-linux-musl/digidecs server-x86_64-unknown-linux-musl/server-x86_64-unknown-linux-musl | ||
|
||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
server-x86_64-unknown-linux-musl/server-x86_64-unknown-linux-musl | ||
frontend.tar.gz/frontend.tar.gz |
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,53 @@ | ||
name: test | ||
on: | ||
push: {} | ||
|
||
jobs: | ||
server-fmt: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: rustup toolchain install stable --profile minimal | ||
- run: rustup component add rustfmt | ||
- uses: Swatinem/[email protected] | ||
with: | ||
workspaces: "server" | ||
save-if: ${{ github.ref == 'refs/heads/master' }} | ||
- run: cargo fmt --all --check | ||
working-directory: server | ||
|
||
server-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: rustup toolchain install stable --profile minimal | ||
- uses: Swatinem/[email protected] | ||
with: | ||
workspaces: "server" | ||
save-if: ${{ github.ref == 'refs/heads/master' }} | ||
- run: cargo test | ||
working-directory: server | ||
|
||
server-clippy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: rustup toolchain install stable --profile minimal | ||
- run: rustup component add clippy | ||
- uses: Swatinem/[email protected] | ||
with: | ||
workspaces: "server" | ||
save-if: ${{ github.ref == 'refs/heads/master' }} | ||
- run: cargo clippy | ||
working-directory: server | ||
|
||
frontend-eslint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install modules | ||
working-directory: frontend | ||
run: yarn | ||
- name: Run eslint | ||
working-directory: frontend | ||
run: yarn eslint |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.