diff options
| author | jhurst <jhurst@cinecert.com> | 2020-08-25 08:13:25 -0700 |
|---|---|---|
| committer | jhurst <jhurst@cinecert.com> | 2020-08-25 08:13:25 -0700 |
| commit | e1e8fdd9d0715c9df4ab12190cb27b02f3a1c5d8 (patch) | |
| tree | eb016913d31cd77ab08daa7768abb092566d482f | |
| parent | 2ff2dee66d1c869282cd153a8407b37ece2b79fc (diff) | |
| parent | 474dfebead4e815d5ca374eeccb1c05360b31962 (diff) | |
Merge branch 'master' into sha1_builtin
| -rw-r--r-- | .github/workflows/ci.yml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..8a2da82 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,39 @@ +name: CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build_ubuntu_autoconf: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: autoreconf + run: autoreconf -if + - name: configure + run: ./configure --enable-as-02 + - name: make + run: make + + build_ubuntu_cmake: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: dependencies + run: sudo apt-get update && sudo apt-get install -y + libxerces-c-dev + - name: Create build dir + run: mkdir build + - name: cmake + working-directory: build + run: cmake .. + - name: make + working-directory: build + run: make |
