Skip to content

Commit

Permalink
Update github actions script to suit new build process
Browse files Browse the repository at this point in the history
  • Loading branch information
drojf committed Sep 5, 2024
1 parent fcfdbfb commit 8b39968
Showing 1 changed file with 30 additions and 38 deletions.
68 changes: 30 additions & 38 deletions .github/workflows/pr_compile_scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,61 +6,53 @@ on:

jobs:
dll_build:
name: Build DLL
name: Build DLL and Standalone Compiler
runs-on: ubuntu-latest
permissions:
contents: write
strategy:
matrix:
python-version: [3.8]
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Force git to use CRLF (on ubuntu runner, will checkout as LF otherwise)
run: git config --global core.autocrlf true # Forces LF on the server to convert to CRLF locally

- name: Checkout the script repository
uses: actions/checkout@v4

- name: Checkout the higurashi-assembly (DLL) repository
uses: actions/checkout@v4
with:
repository: 07th-mod/higurashi-assembly
ref: wata-mod
path: ./dll/

# Note: This uses the mono bundled with Ubuntu to build the project
- name: Compile project
- name: Compile DLL
run: msbuild /p:Configuration=Release
working-directory: ./dll/

- name: Compile standalone Higurashi Script Compiler
run: msbuild /p:Configuration=ScriptCompiler
working-directory: ./dll/

- name: Save Git Hash
run: >-
git show --pretty="format:Commit: %H %d%nDate: %cs%n%n%B" --no-patch > ./bin/Release/Assembly-CSharp.version.txt
working-directory: ./dll/

- name: Upload DLL as Artifact
uses: actions/upload-artifact@v3
with:
name: higurashi-dll
path: |
./bin/Release/Assembly-CSharp.dll
./bin/Release/Assembly-CSharp.version.txt
if-no-files-found: error

windows_build:
name: Windows Build
needs: dll_build
runs-on: windows-latest
permissions:
contents: write
strategy:
matrix:
python-version: [3.8]
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Move bin/ folder out of dll/ folder
run: mv ./dll/bin/ .

# Download Windows artifacts
- name: Download DLL
uses: actions/download-artifact@v3
with:
name: higurashi-dll

# Setup python (Windows VM is Python 3.7 by default, we need at least Python 3.8)
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# At this point the following important files should exist in the './bin/' folder
# ./bin/ScriptCompiler/System.Core.dll
# ./bin/ScriptCompiler/Antlr3.Runtime.dll
# ./bin/ScriptCompiler/HigurashiScriptCompiler.exe
# ./bin/Release/Assembly-CSharp.dll
# ./bin/Release/Assembly-CSharp.version.txt

- name: Run Release Script
id: run_release
env:
HIGURASHI_BASE_EXTRACT_KEY: ${{ secrets.HIGURASHI_BASE_EXTRACT_KEY }}
run: |
curl -OJ https://raw.githubusercontent.com/07th-mod/higurashi_release/master/deploy_higurashi/deploy_higurashi.py
python deploy_higurashi.py ${{ github.event.repository.name }}
Expand Down

0 comments on commit 8b39968

Please sign in to comment.