Skip to content

wad: fix texture crash #24

wad: fix texture crash

wad: fix texture crash #24

Workflow file for this run

name: Rust
on:
release:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 1 * *' # Monthly
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-2019]
rust: [stable, beta]
configuration: [release]
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
filename: gchimp
label: Ubuntu
- os: windows-2019
filename: gchimp.exe
target: x86_64-pc-windows-msvc
label: Windows
- configuration: release
release-flag: '--release'
name: ${{ matrix.rust }} - ${{ matrix.label }} - ${{ matrix.configuration }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/[email protected]
with:
profile: minimal
override: true
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
- uses: Swatinem/[email protected]
- name: Build
uses: actions-rs/[email protected]
with:
command: build
args: --target ${{ matrix.target }} ${{ matrix.release-flag }}
- name: Preparing upload
run: |
mkdir gchimp
cp target/${{ matrix.target }}/${{ matrix.configuration }}/${{ matrix.filename }} gchimp/${{ matrix.filename }}
cp -r dist gchimp/
mv gchimp/dist/config.toml gchimp/config.toml
- name: Download no_vtf Linux
if: matrix.os == 'ubuntu-latest'
run: |
wget https://b5327157.srht.site/no_vtf/release/no_vtf-linux_x64.tar.xz
tar -xf no_vtf-linux_x64.tar.xz
cp -r no_vtf gchimp/dist/
- name: Download no_vtf Windows
if: matrix.os == 'windows-2019'
run: |
curl -O https://b5327157.srht.site/no_vtf/release/no_vtf-windows_x64.zip
7z x no_vtf-windows_x64.zip
cp -r no_vtf gchimp/dist/
- uses: actions/[email protected]
if: matrix.rust == 'stable'
with:
name: gchimp-${{ runner.os }}-${{ matrix.configuration }}
path: gchimp