chore: Upgrade develop branch to conan 2 (#2237) #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} | |