Skip to content
This repository has been archived by the owner on Aug 11, 2024. It is now read-only.

U | Update Stable #21

Merged
merged 2 commits into from
Dec 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 23 additions & 21 deletions .github/workflows/stable-build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MCT-StableBuild
name: Stable-Build

on:
push:
Expand All @@ -7,29 +7,31 @@ on:
branches: [ "Stable" ]

jobs:

linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build-linux
run: make
working-directory: src
- name: Build MCT-Linux
uses: actions/[email protected]
with:
name: MCT-Linux
path: src/MCT-Linux

windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: build-windows
run: g++ MCT-Windows.cpp -o MCT-Windows.exe
working-directory: src
- name: Build MCT-Windows
- name: CMake build
run: |
cd ${{ github.workspace }}
ls
mkdir build
cd build
cmake --version
cmake ../
echo "Done!"
shell: sh
- name: Make build
run: |
cd ${{ github.workspace }}
ls
cd build
make
echo "Done!"
shell: sh
- name: Upload exec file
uses: actions/[email protected]
with:
name: MCT-Windows
path: src/MCT-Windows
name: MCT-Stable
path: build/MCT

93 changes: 0 additions & 93 deletions src/ECPPH.h

This file was deleted.

Binary file removed src/MCT-Linux
Binary file not shown.
232 changes: 0 additions & 232 deletions src/MCT-Linux.cpp

This file was deleted.

Loading