Skip to content

chore: Upgrade develop branch to conan 2 (#2237) #15

chore: Upgrade develop branch to conan 2 (#2237)

chore: Upgrade develop branch to conan 2 (#2237) #15

Workflow file for this run

name: Generate Nix Caches
on:
workflow_dispatch:
push:
branches:
- 'develop'
paths:
- 'flake.lock'
jobs:
Checkout:
uses: "./.github/workflows/_checkout.yml"
CacheNix:
needs: [Checkout]
runs-on: ubuntu-latest
steps:
- name: 'Download Source Tarfiles'
uses: actions/download-artifact@v4
with:
name: source
- name: 'Unpack Source'
shell: bash
run: tar -xvf dissolve-original-source.tar
- name: "Build (Cache Only) (ubuntu-latest)"
uses: "./.github/workflows/build"
with:
target: dissolve-gui
cacheOnly: true
currentVersion: ${{ needs.Checkout.outputs.currentVersion }}
qtVersion: ${{ needs.Checkout.outputs.qtVersion }}
antlrVersion: ${{ needs.Checkout.outputs.antlrVersion }}
nixHash: ${{ needs.Checkout.outputs.nixHash }}