Skip to content

Merge pull request #2 from AthallahDzaki/3.0 #3

Merge pull request #2 from AthallahDzaki/3.0

Merge pull request #2 from AthallahDzaki/3.0 #3

Workflow file for this run

name: CMake
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup
uses: ilammy/[email protected]
with:
arch: x86
- name: Cache bin
id: cache-bin
uses: actions/cache@v3
with:
path: bin
key: ${{ runner.os }}-bin
- name: Create bin folder
if: steps.cache-bin.outputs.cache-hit != 'true'
run: |
mkdir bin
cd bin
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release ../
mkdir output_III
mkdir output_VC
mkdir output_SA
- name: Compile
run: |
cd bin
ninja
cp TrilogyChaosMod.SA.asi output_SA/TrilogyChaosMod.SA.asi
- name: Upload SA
uses: actions/upload-artifact@v1
with:
name: "TrilogyChaosMod.SA"
path: bin/output_SA