Skip to content

Commit

Permalink
new file: .github/workflows/build-ceres.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
miner committed Jan 6, 2024
1 parent f44e720 commit c1fe7eb
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build-ceres.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c1fe7eb

Please sign in to comment.