Moved RemoteTrace to inferno-ml-server-types #469
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 | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 300 | |
env: | |
MNIST_FNAME: /tmp/mnist/mnist.ts.pt | |
MNIST_COMMIT: 94b288a631362aa44edc219eb8f54a7c39891169 | |
steps: | |
- uses: actions/checkout@v4 | |
# Lint code with HLint | |
- name: Set up HLint | |
uses: haskell-actions/hlint-setup@v2 | |
with: | |
version: "3.8" | |
- name: Run HLint | |
uses: haskell-actions/hlint-run@v2 | |
with: | |
path: '["inferno-core/", "inferno-lsp/", "inferno-ml/", "inferno-ml-server-types/", "inferno-types/", "inferno-vc/"]' | |
fail-on: error | |
- uses: cachix/install-nix-action@v30 | |
with: | |
install_url: https://releases.nixos.org/nix/nix-2.18.5/install | |
extra_nix_config: | | |
fallback = true | |
substituters = https://cache.nixos.org https://cache.iog.io | |
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= | |
narinfo-cache-negative-ttl = 60 | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: inferno | |
authToken: "${{ secrets.CACHIX_TOKEN }}" | |
# Build inferno and run all tests | |
- run: | | |
nix build -L .# | |
- name: Run inferno on MNIST | |
working-directory: inferno-ml/test/ | |
run: | | |
cp ../../nix/inferno-ml/tests/models/mnist.ts.pt ./ | |
nix run .#inferno-ml -- mnist.inferno | |
# Downhole autoencoder example | |
- name: Download and run downhole autoencode model | |
working-directory: inferno-ml/test/ | |
run: | | |
wget https://www.dropbox.com/s/gshxebydlwqvspj/downhole_autoencoder.ts.pt?dl=1 -O downhole_autoencoder.ts.pt | |
nix run .#inferno-ml -- downhole-autoencoder.inferno |