mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
pin specific index state
This commit is contained in:
parent
6c923b8802
commit
b619d73b16
1 changed files with 7 additions and 6 deletions
13
.github/workflows/prototyping.yml
vendored
13
.github/workflows/prototyping.yml
vendored
|
@ -6,11 +6,12 @@ on:
|
|||
- '.github/workflows/prototyping.yml'
|
||||
- 'prototyping/**'
|
||||
|
||||
env:
|
||||
AGDA_VERSION: 2.6.2.1
|
||||
INDEX_STATE: '@1646344690'
|
||||
|
||||
jobs:
|
||||
linux:
|
||||
strategy:
|
||||
matrix:
|
||||
agda: [2.6.2.1]
|
||||
name: prototyping
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
@ -18,7 +19,7 @@ jobs:
|
|||
- uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.cabal/store
|
||||
key: prototyping-${{ runner.os }}-${{ matrix.agda }}
|
||||
key: prototyping-${{ runner.os }}-${{ env.AGDA_VERSION }}-${{ env.INDEX_STATE }}
|
||||
- uses: actions/cache@v2
|
||||
id: luau-ast-cache
|
||||
with:
|
||||
|
@ -32,8 +33,8 @@ jobs:
|
|||
- name: cabal install
|
||||
working-directory: prototyping
|
||||
run: |
|
||||
cabal install Agda-${{ matrix.agda }}
|
||||
cabal install --lib scientific vector aeson --package-env .
|
||||
cabal install Agda-${{ env.AGDA_VERSION }} --index-state=${{ env.INDEX_STATE }}
|
||||
cabal install --lib scientific vector aeson --package-env . --index-state=${{ env.INDEX_STATE }}
|
||||
- name: check targets
|
||||
working-directory: prototyping
|
||||
run: |
|
||||
|
|
Loading…
Add table
Reference in a new issue