mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03:16 +00:00
CI test
This commit is contained in:
parent
5628b78ae2
commit
0f846f34aa
2 changed files with 60 additions and 0 deletions
39
.github/workflows/release.yml
vendored
Normal file
39
.github/workflows/release.yml
vendored
Normal file
|
@ -0,0 +1,39 @@
|
|||
name: release
|
||||
|
||||
on: [push]
|
||||
|
||||
# on:
|
||||
# push:
|
||||
# tags:
|
||||
# - v**
|
||||
|
||||
jobs:
|
||||
build-and-release:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
targets: i686-pc-windows-gnu, x86_64-pc-windows-gnu
|
||||
|
||||
- name: Build ewext
|
||||
run: cargo build --release --target i686-pc-windows-gnu
|
||||
working-directory: ./ewext
|
||||
- name: Copy ewext
|
||||
run: cp ewext/target/i686-pc-windows-gnu/release/ewext.dll quant.ew/ewext0.dll
|
||||
|
||||
- name: Build Linux proxy release
|
||||
run: cargo build --release
|
||||
working-directory: ./noita_proxy
|
||||
- name: Build Windows proxy release
|
||||
run: cargo build --release --target x86_64-pc-windows-gnu
|
||||
working-directory: ./noita_proxy
|
||||
|
||||
- name: Create archives
|
||||
run: python scripts/ci_make_archives.py
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: release
|
||||
path: target/*
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue