Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixos-search
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c048af9f692e
Choose a base ref
...
head repository: NixOS/nixos-search
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3bf490759620
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jul 24, 2020

  1. 1
    Copy the full SHA
    3bf4907 View commit details
Showing with 13 additions and 10 deletions.
  1. +13 −10 .github/workflows/cron.yml
23 changes: 13 additions & 10 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
@@ -29,9 +29,15 @@ jobs:
with:
fetch-depth: 0

- name: Installing Nix
uses: cachix/install-nix-action@v8

- name: Installing awscli
run: |
nix-env -iA nixpkgs.awscli
- name: Check for latest evaluation in ${{ matrix.channel }} channel
run: |
sudo apt-get install -y awscli
if [ "${{ matrix.channel }}" = "unstable" ]; then
RELEASE=$(aws s3 ls --no-sign-request "$S3_URL/" | grep "/$" | cut -d" " -f29 | sort | tail -1 | sed 's|/||')
else
@@ -40,22 +46,19 @@ jobs:
aws s3 cp --no-sign-request "$S3_URL/$RELEASE/src-url" ./
echo "::set-env name=EVAL_ID::$(cat src-url | cut -c30-)"
- name: Cache ${{ matrix.channel }} channel builds
id: eval-cache
uses: actions/cache@v2
with:
path: ./eval-cache
key: eval-cache-${{ env.EVAL_ID }}

- name: Download latest builds for ${{ matrix.channel }} channel (if needed)
if: steps.eval-cache.outputs.cache-hit != 'true'
run: |
mkdir -p ./eval-cache
cp ./src-url ./eval-cache/
curl -H "Content-Type: application/json" "$(cat ./eval-cache/src-url)/builds" -o ./eval-cache/builds.json
- name: Installing Nix
uses: cachix/install-nix-action@v8
- name: Cache ${{ matrix.channel }} channel builds
id: eval-cache
uses: actions/cache@v2
with:
path: ./eval-cache
key: eval-cache-${{ env.EVAL_ID }}

- name: Installing NixFlakes
run: |