Skip to content

fix(ci): fix compress process #81

fix(ci): fix compress process

fix(ci): fix compress process #81

name: Cargo Lint & Test
on:
push:
branches: ['main']
pull_request:
branches: '*'
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: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- 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: Core Test
run: cargo test --workspace
- name: Sync node version
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: Build Test(CLI)
run: cargo build
- name: Setup cache
uses: actions/cache@v3
with:
path: |
~/.npm
${{ github.workspace }}/.next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
# 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 install
- name: Test(GUI)
run: npm test
- name: Build Test(GUI)
run: npm run build
- name: Make outputs dir
run: mkdir -p ./gui
- name: Compress outputs(Windows)
shell: pwsh
if: ${{ matrix.platform }} == 'windows-latest'
run: |
$compress = @{
LiteralPath= "./target/debug/g_dar2oar.exe", "/target/debug/dar2oar.exe"
CompressionLevel = "Fastest"
DestinationPath = "./gui/g_dar2oar-${{ runner.os}}.zip"
}
Compress-Archive @compress
- name: Compress outputs(Unix)
shell: bash
if: ${{ matrix.platform }} != 'windows-latest'
run: tar -czvf ./gui/g_dar2oar-${{ runner.os}}.tar.gz ${{ github.workspace}}/target/debug/g_dar2oar ${{ github.workspace}}/target/debug/dar2oar
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.3
with:
name: DAR to OAR Converter(GUI)-${{runner.os}}
path: |
${{ github.workspace}}/gui/