From 235a4115dfe50c63a0290ffb6c70719c9a9341ee Mon Sep 17 00:00:00 2001 From: Kevin Kwok Date: Thu, 16 Mar 2023 18:39:41 -0700 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 62 ++++++++++++++++++------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 59aac6314..b6140ab13 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,37 +14,37 @@ on: paths: ['CMakeLists.txt', 'Makefile', '**.h', '*.c', '**.cpp'] jobs: -# ubuntu-latest: -# runs-on: ubuntu-latest -# -# steps: -# - name: Clone -# uses: actions/checkout@v1 -# -# - name: Dependencies -# run: | -# sudo apt-get update -# sudo apt-get install build-essential -# -# - name: Build -# run: | -# make -# -# macOS-latest: -# runs-on: macOS-latest -# -# steps: -# - name: Clone -# uses: actions/checkout@v1 -# -# - name: Dependencies -# run: | -# brew update -# -# - name: Build -# run: | -# make -# + ubuntu-latest: + runs-on: ubuntu-latest + + steps: + - name: Clone + uses: actions/checkout@v1 + + - name: Dependencies + run: | + sudo apt-get update + sudo apt-get install build-essential + + - name: Build + run: | + make + + macOS-latest: + runs-on: macOS-latest + + steps: + - name: Clone + uses: actions/checkout@v1 + + - name: Dependencies + run: | + brew update + + - name: Build + run: | + make + windows-latest: runs-on: windows-latest