From c1fe7ebc7fbe967147c31b43a7184f7dd01be181 Mon Sep 17 00:00:00 2001 From: miner Date: Sat, 6 Jan 2024 18:51:00 -0500 Subject: [PATCH] new file: .github/workflows/build-ceres.yml --- .github/workflows/build-ceres.yml | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/build-ceres.yml diff --git a/.github/workflows/build-ceres.yml b/.github/workflows/build-ceres.yml new file mode 100644 index 0000000..1523dc2 --- /dev/null +++ b/.github/workflows/build-ceres.yml @@ -0,0 +1,34 @@ +# Sample workflow for building and deploying a Jekyll site to GitHub Pages +name: Build Ceres from c++ source + +on: + push: + branches: [ $default-branch ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Download Emscripten + run: > + cwd=$(pwd) + bdir=$(pwd)/build + + echo $bdir + git clone -b "3.1.51" https://github.com/emscripten-core/emsdk.git $bdir/emsdk + +# - name: configure +# run: ./configure +# - name: make +# run: make +# - name: make check +# run: make check +# - name: make distcheck +# run: make distcheck