bump some dependencies #475
Workflow file for this run
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
name: Build lib for use in NodeJS | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "main" branch | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
# Setup JVM and Clojure tooling | |
- name: 'Setup OpenJDK' | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: 21 | |
- name: Setup Clojure build tools | |
uses: DeLaGuardo/setup-clojure@12.5 | |
with: | |
cli: 1.12.0.1479 | |
- name: Setup cache for Clojure dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.m2/repository | |
~/.gitlibs | |
~/.deps.clj | |
# List all files containing dependencies: | |
key: cljdeps-${{ hashFiles('deps.edn') }} | |
# key: cljdeps-${{ hashFiles('deps.edn', 'bb.edn') }} | |
# key: cljdeps-${{ hashFiles('project.clj') }} | |
# key: cljdeps-${{ hashFiles('build.boot') }} | |
restore-keys: cljdeps- | |
- name: Setup proto and bun | |
uses: moonrepo/setup-toolchain@v0 | |
with: | |
auto-install: true | |
- name: Install npm dependencies | |
run: bun install | |
- name: Setup SWI-Prolog | |
uses: smucclaw/setup-swi-prolog@master | |
with: | |
swi-prolog-branch: devel | |
swi-prolog-version: '9.3.13-3-ga0ad9bcb5-nobleppa2' | |
- name: Install SWI-Prolog dependencies | |
run: bun install:swipl-deps | |
- name: Precompile SWI-Prolog files to qlf | |
run: bun build:swipl-public-qlf | |
- name: Build NodeJS lib | |
run: bun build:node-lib |