Feature/change better dar parser #280
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
name: Cargo Lint & Test | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: '*' | |
workflow_dispatch: # <- Setting to allow manual execution by button. | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [macos-latest, ubuntu-20.04, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Install dependencies (ubuntu only) | |
if: matrix.platform == 'ubuntu-20.04' | |
# You can remove libayatana-appindicator3-dev if you don't use the system tray feature. | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev | |
- uses: actions/checkout@v4 | |
- name: Rust cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
prefix-key: cargo-${{ matrix.platform }} | |
- name: Install components | |
run: | | |
rustup component add clippy | |
rustup component add rustfmt | |
- name: Format Check | |
run: cargo fmt --all -- --check | |
- name: Lint Check | |
run: cargo clippy --workspace -- -D warnings | |
- name: Test(Rust) | |
run: cargo test --workspace | |
- name: Sync node version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
cache: 'npm' | |
- name: Build Test(CLI) | |
run: cargo build --release | |
- name: Node.js cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ github.workspace }}/dar2oar_gui/frontend/.next/cache | |
# Generate a new cache whenever packages or source files change. | |
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('dar2oar_gui/frontend/src/**/*.[jt]s', 'dar2oar_gui/frontend/src/**/*.[jt]sx') }} | |
# If source files changed but packages didn't, rebuild from a prior cache. | |
restore-keys: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}- | |
- name: Install frontend dependencies | |
run: npm ci | |
- name: Test(Node.js) | |
run: npm test | |
- name: Build Test(GUI) | |
run: npm run build | |
- name: Make outputs dir | |
run: mkdir -p ./build | |
- name: Compress outputs(Windows) | |
shell: pwsh | |
if: runner.os == 'Windows' | |
run: | | |
Move-Item -Path ./target/release/g_dar2oar.exe -Destination './build' | |
Move-Item -Path ./target/release/dar2oar.exe -Destination './build' | |
- name: Compress outputs(MacOS) | |
shell: bash | |
if: runner.os == 'macOS' | |
run: | | |
mv ./target/release/g_dar2oar ./build | |
mv ./target/release/dar2oar ./build | |
- name: Compress outputs(Linux) | |
shell: bash | |
if: runner.os == 'Linux' | |
run: | | |
mv ./target/release/g-dar2oar ./build | |
mv ./target/release/dar2oar ./build | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: DAR_to_OAR_Converter-${{runner.os}}-Portable | |
path: | | |
./build/ |