Skip to content

Commit

Permalink
added teset
Browse files Browse the repository at this point in the history
  • Loading branch information
nobuyuki83 committed Mar 7, 2024
1 parent 01441f2 commit 2fc7833
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI_Linux

on:
push:
branches: [ main ]
pull_request:
branches: [ main, task0, task00, task1, task01, task2, task02, task3, task03, task5, task05, task6, task06, task7, task07, task8, task08, task9, task09]

env:
BUILD_TYPE: Debug

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: install glfw
run: |
git submodule update --init -- external/glfw
cmake -S external/glfw -B external/glfwbuild
cd external/glfwbuild
cmake --build . --config Release
cmake --install . --prefix ../glfwlib
- name: install eigen
run: |
git submodule update --init -- external/eigen
- name: build
run: |
cmake -S . -B build
cd build
cmake --build .
35 changes: 35 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI_Win

on:
push:
branches: [ main ]
pull_request:
branches: [ main, task0, task00, task1, task01, task2, task02, task3, task03, task05, task5, task06, task6, task07, task7, task08, task8, task09, task9]

env:
BUILD_TYPE: Debug

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2

- name: install glfw
run: |
git submodule update --init -- external/glfw
cmake -S external/glfw -B external/glfwbuild
cd external/glfwbuild
cmake --build . --config Release
cmake --install . --prefix ../glfwlib
- name: get eigen
run: |
git submodule update --init -- external/eigen
- name: build
run: |
cmake -S . -B build -A x64
cd build
cmake --build .

0 comments on commit 2fc7833

Please sign in to comment.