ci: improvements and such

This commit is contained in:
rjindael 2023-07-17 18:35:06 -07:00
parent c4277163ff
commit 294cbbccbc
No known key found for this signature in database
GPG Key ID: D069369C906CCF31
2 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ jobs:
build-windows:
strategy:
matrix:
configuration: [Release, Debug]
configuration: [release, debug]
name: Build (Windows)
runs-on: windows-latest
@ -23,7 +23,6 @@ jobs:
- uses: msys2/setup-msys2@v2
name: Set up MSYS2
with:
update: true
msystem: mingw64
install: >-
mingw-w64-x86_64-gcc
@ -35,7 +34,7 @@ jobs:
mingw-w64-x86_64-qt6
- name: Generate Ninja build files
run: cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=${{ matrix.configuration == 'Release' && 'MinSizeRel' || matrix.configuration }} .
run: cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=${{ matrix.configuration == 'release' && 'MinSizeRel' || 'Debug' }} .
- name: Build (Ninja)
run: ninja -C build
@ -59,5 +58,5 @@ jobs:
- name: Upload
uses: actions/upload-artifact@v3
with:
name: RNR for Windows (${{ matrix.configuration }})
name: RNR (win_x64-${{ matrix.configuration }}-${{ github.sha }})
path: build/dist

View File

@ -1,4 +1,5 @@
# RNR
[![GitHub CI Status](https://img.shields.io/github/actions/workflow/status/lrre-foss/rnr/ci.yml?branch=trunk&label=builds)](https://github.com/lrre-foss/rnr/actions)
[![Star](https://img.shields.io/github/stars/lrre-foss/RNR?style=social)](https://github.com/lrre-foss/RNR/stargazers)
RNR (**R**NR's **N**ot **R**oblox) is a project that aims to recreate the look and feel of classic Roblox with new features while remaining fully compatible with clients from that era. It is built upon an engine that closely resembles Roblox's own at the time, referencing disassemblies of legacy client binaries.