Skip to content

Commit

Permalink
Add -j1 to nix-build call.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmjio committed Oct 6, 2021
1 parent a77a9c4 commit fb48f5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Dependency install
run: nix-build -A pkgs.yarn default.nix && nix-env -i ./result
- name: Miso build
run: nix-build
run: nix-build -j1
- name: Diffing tests
run: cd tests && yarn && yarn test

Expand All @@ -41,9 +41,9 @@ jobs:
name: miso-haskell
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
- name: Miso build
run: nix-build
run: nix-build -j1
- name: Deploy
run: nix-build -A deploy && ./result
run: nix-build -A deploy -j1 && ./result
env:
AWS_SECRET_ACCESS_KEY: '${{ secrets.AWS_SECRET_ACCESS_KEY }}'
AWS_ACCESS_KEY_ID: '${{ secrets.AWS_ACCESS_KEY_ID }}'
Expand Down

0 comments on commit fb48f5e

Please sign in to comment.