-
Notifications
You must be signed in to change notification settings - Fork 0
ci: update actions #66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,11 +10,14 @@ jobs: | |
| test-linux: | ||
| runs-on: ubuntu-22.04 | ||
| steps: | ||
| - uses: actions/checkout@v3 | ||
| - uses: actions/checkout@v5 | ||
| with: | ||
| fetch-depth: 0 | ||
| # test that PAT works | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I.e. a different token (presumably a per-job one) is used by default, but explicitly using the one from
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's the idea, yeah |
||
| token: ${{ secrets.PAT }} | ||
| - name: Install libquil dependencies | ||
| run: sudo apt install -y libffi\* libblas\* liblapack\* | ||
| - uses: dtolnay/rust-toolchain@stable | ||
| - name: Install libquil | ||
| run: | | ||
| curl https://raw.githubusercontent.com/rigetti/libquil/main/install.sh | bash -s 0.3.0 | ||
|
|
@@ -26,11 +29,13 @@ jobs: | |
| test-macos: | ||
| runs-on: macos-15-intel | ||
| steps: | ||
| - uses: actions/checkout@v3 | ||
| - uses: actions/checkout@v5 | ||
| with: | ||
| fetch-depth: 0 | ||
| token: ${{ secrets.PAT }} | ||
| - name: Install libquil dependencies | ||
| run: brew install lapack openblas | ||
| - uses: dtolnay/rust-toolchain@stable | ||
| - name: Install libquil | ||
| run: 'curl https://raw.githubusercontent.com/rigetti/libquil/main/install.sh | bash -s 0.3.0' | ||
| - name: Run tests | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I trust
dtolnay, but what's the difference here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actions-rswas archived a couple of years ago