-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new file: .github/workflows/build-ceres.yml
- Loading branch information
miner
committed
Jan 6, 2024
1 parent
f44e720
commit c1fe7eb
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |