summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2024-12-08 23:55:56 -0600
committerKiritoDv <kiritodev01@gmail.com>2024-12-08 23:55:56 -0600
commit2d51bc69a34e261239c3c25165ee5d511baf24eb (patch)
tree9747f2a861bf49688bba7762e88a2a6779c934ec /.github
parent1ca4832350f79769bfb12a3407861ffdd13c2e09 (diff)
Testing CI/CD
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux.yml50
-rw-r--r--.github/workflows/mac.yml30
-rw-r--r--.github/workflows/windows.yml24
3 files changed, 104 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
new file mode 100644
index 00000000..8e667c64
--- /dev/null
+++ b/.github/workflows/linux.yml
@@ -0,0 +1,50 @@
+name: Linux Compile
+
+on:
+ push:
+ branches: [ "*" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ submodules: recursive
+ - name: Install dependencies
+ run: sudo apt-get install gcc g++ git cmake ninja-build lsb-release libsdl2-dev libpng-dev libsdl2-net-dev libzip-dev zipcmp zipmerge ziptool nlohmann-json3-dev libtinyxml2-dev libspdlog-dev libboost-dev libopengl-dev
+ - name: Install latest SDL
+ run: |
+ export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
+ wget https://www.libsdl.org/release/SDL2-2.24.1.tar.gz
+ tar -xzf SDL2-2.24.1.tar.gz
+ cd SDL2-2.24.1
+ ./configure
+ make -j 10
+ sudo make install
+ - name: Install latest tinyxml2
+ run: |
+ export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
+ wget https://github.com/leethomason/tinyxml2/archive/refs/tags/10.0.0.tar.gz
+ tar -xzf 10.0.0.tar.gz
+ cd tinyxml2-10.0.0
+ mkdir build
+ cd build
+ cmake ..
+ make
+ sudo make install
+ - name: Build
+ run: |
+ cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Release
+ cmake --build build-cmake -j
+ - name: Create Package
+ run: |
+ mkdir starship-release
+ mv build-cmake/UltraViewer starship-release/
+ - name: Publish packaged artifacts
+ uses: actions/upload-artifact@v4
+ with:
+ name: starship-linux-x64
+ path: starship-release \ No newline at end of file
diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml
new file mode 100644
index 00000000..8ba4827d
--- /dev/null
+++ b/.github/workflows/mac.yml
@@ -0,0 +1,30 @@
+name: Macos Compile
+
+on:
+ push:
+ branches: [ "*" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+ runs-on: macOS-latest
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ submodules: recursive
+ - name: Install dependencies
+ run: brew install sdl2 libpng glew ninja cmake libzip nlohmann-json tinyxml2 spdlog
+ - name: Build
+ run: |
+ cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Release
+ cmake --build build-cmake -j
+ - name: Create Package
+ run: |
+ mkdir starship-release
+ mv build-cmake/UltraViewer starship-release/
+ - name: Publish packaged artifacts
+ uses: actions/upload-artifact@v4
+ with:
+ name: starship-mac-x64
+ path: starship-release \ No newline at end of file
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
new file mode 100644
index 00000000..d339fb27
--- /dev/null
+++ b/.github/workflows/windows.yml
@@ -0,0 +1,24 @@
+name: Windows Compile
+
+on:
+ push:
+ branches: [ "*" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+ runs-on: windows-2022
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ submodules: recursive
+ - name: Build
+ run: |
+ cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T v143 -A x64 -DCMAKE_BUILD_TYPE=Release
+ cmake --build ./build/x64
+ - name: Upload build
+ uses: actions/upload-artifact@v4
+ with:
+ name: starship-windows
+ path: ./build/x64/Debug \ No newline at end of file