Skip to content

chore: Try to build on gh actions #561

chore: Try to build on gh actions

chore: Try to build on gh actions #561

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
defaults:
run:
shell: bash
steps:
- run: which pkg-config
- uses: actions/checkout@v2.3.2
- uses: actions/setup-node@v4
with:
node-version: "20"
- uses: lukka/get-cmake@latest
- name: Setup anew (or from cache) vcpkg (and does not build any package)
uses: lukka/run-vcpkg@v11
with:
runVcpkgInstall: true
runVcpkgFormatString: '["install", "--clean-after-build"]'
- run: vcpkg install
- name: Set pkg-config path on Unix
if: runner.os != 'Windows'
run: |
ls "${GITHUB_WORKSPACE}/vcpkg_installed/${VCPKG_DEFAULT_TRIPLET}/lib/pkgconfig"
echo "PKG_CONFIG_PATH=${GITHUB_WORKSPACE}/vcpkg_installed/${VCPKG_DEFAULT_TRIPLET}/lib/pkgconfig" >> $GITHUB_ENV
- name: Set pkg-config path on Unix
if: runner.os == 'Windows'
shell: bash
run: |
echo "PKG_CONFIG_PATH=${GITHUB_WORKSPACE}\vcpkg_installed\\${VCPKG_DEFAULT_TRIPLET}\lib\pkgconfig" >> $GITHUB_ENV
- shell: cmd
run: tree D:\a\odiff\odiff\vcpkg_installed\x64-windows
- name: Install winget
uses: Cyberboss/install-winget@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- shell: bash
run: |
winget install --id=bloodrock.pkg-config-lite -e --disable-interactivity --accept-source-agreements
- run: pkg-config --cflags --libs libspng
- uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: 4.14.0
dune-cache: true
- name: Install deps & build
run: opam install . --with-test
- run: opam exec -- dune build --verbose
- name: Test
run: esy test
- name: Test node bindings
run: esy test-js
- name: Test ts declaration
run: esy test-ts
- uses: actions/upload-artifact@v2
if: failure()
with:
name: orange_diff_generated
path: test/test-images