Revert changes of vec_permute functions in Lib.IntVector #105
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: Nix | |
on: | |
push: | |
branches-ignore: [ '_**' ] | |
pull_request: | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
nix: | |
runs-on: self-hosted | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: build hacl | |
run: | | |
nix build -L .#hacl | |
- name: build logs | |
run: | | |
nix log .#hacl | |
- name: resource monitor | |
run: | | |
nix build .#hacl.passthru.resource-monitor | |
cat result/resources.txt | |
- name: generate artifacts | |
run: | | |
nix build .#hacl.passthru.build-products | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: hints.tar.gz | |
path: result/hints.tar.gz | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: dist.tar.gz | |
path: result/dist.tar.gz |