Skip to content

Commit

Permalink
WIP: Github Actions install Nix
Browse files Browse the repository at this point in the history
  • Loading branch information
msgilligan committed Mar 7, 2024
1 parent 0e766f1 commit a4e0066
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,11 @@ jobs:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Install Nix
uses: cachix/install-nix-action@v25
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Install secp256k1 with Nix
run: nix profile install nixpkgs#secp256k1
- name: Build with Gradle
run: ./gradlew build -x test # Skip tests because they will fail without libsecp256k1 installed.

0 comments on commit a4e0066

Please sign in to comment.