final changes to move to noirenberg #5
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: Nightly Noirenberg drift test | |
on: | |
# Giving ourselves a way to trigger this manually | |
workflow_dispatch: | |
schedule: | |
# Run a nightly release at 2 AM UTC | |
- cron: '0 2 * * *' | |
pull_request: | |
jobs: | |
test-noirenberg-setup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# - name: Set up bun | |
# uses: oven-sh/setup-bun@v1 | |
# - name: Get latest stable version of Noir | |
# id: get-stable | |
# run: | | |
# VERSIONS_MAP=$(node ./.github/scripts/latest.js) | |
# echo "Versions out of script: $VERSIONS_MAP" | |
# STABLE=$(echo "$VERSIONS_MAP" | jq -c '.[]') | |
# echo "::set-output name=stable::$STABLE" | |
- name: Set up path | |
run: | | |
echo "${HOME}/.nargo/bin" >> $GITHUB_PATH | |
echo "${HOME}/.bb/bin" >> $GITHUB_PATH | |
- name: Run noirenberg install script | |
run: | | |
curl -L noiren.be | bash | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
echo "$PATH" | |
cat /home/runner/.bashrc | |
noirenberg | |
which noirenberg | |
- name: Check noir and barretenberg versions | |
run: | | |
echo "Noir version: $(noir --version)" | |
echo "Barretenberg version: $(bb --version)" |