Skip to content

Commit dfa5331

Browse files
committed
Update libcasm dependency versions in github workflows
1 parent 0ffbcaa commit dfa5331

4 files changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/test-linux-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,31 +36,31 @@ jobs:
3636
uses: actions/cache/restore@v5
3737
with:
3838
path: CASMcode_global/dist
39-
key: ${{ runner.os }}-libcasm-global-v2-2-0
39+
key: ${{ runner.os }}-libcasm-global-v2-4-1
4040

4141
### libcasm-xtal ###
4242
- name: restore libcasm-xtal cache
4343
id: cache-libcasm-xtal-restore
4444
uses: actions/cache/restore@v5
4545
with:
4646
path: CASMcode_crystallography/dist
47-
key: ${{ runner.os }}-libcasm-xtal-v2-2-0
47+
key: ${{ runner.os }}-libcasm-xtal-v2-3-0
4848

4949
### libcasm-mapping ###
5050
- name: restore libcasm-mapping cache
5151
id: cache-libcasm-mapping-restore
5252
uses: actions/cache/restore@v5
5353
with:
5454
path: CASMcode_mapping/dist
55-
key: ${{ runner.os }}-libcasm-mapping-v2-2-0
55+
key: ${{ runner.os }}-libcasm-mapping-v2-4-1
5656

5757
### libcasm-clexulator ###
5858
- name: restore libcasm-clexulator cache
5959
id: cache-libcasm-clexulator-restore
6060
uses: actions/cache/restore@v5
6161
with:
6262
path: CASMcode_clexulator/dist
63-
key: ${{ runner.os }}-libcasm-clexulator-v2-2-0
63+
key: ${{ runner.os }}-libcasm-clexulator-v2-3-1
6464

6565
- name: Install CASM dependencies
6666
run: |

.github/workflows/test-linux-cxx-only.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,23 +36,23 @@ jobs:
3636
uses: actions/cache/restore@v5
3737
with:
3838
path: CASMcode_global/dist
39-
key: ${{ runner.os }}-libcasm-global-v2-2-0
39+
key: ${{ runner.os }}-libcasm-global-v2-4-1
4040

4141
### libcasm-xtal ###
4242
- name: restore libcasm-xtal cache
4343
id: cache-libcasm-xtal-restore
4444
uses: actions/cache/restore@v5
4545
with:
4646
path: CASMcode_crystallography/dist
47-
key: ${{ runner.os }}-libcasm-xtal-v2-2-0
47+
key: ${{ runner.os }}-libcasm-xtal-v2-3-0
4848

4949
### libcasm-clexulator ###
5050
- name: restore libcasm-clexulator cache
5151
id: cache-libcasm-clexulator-restore
5252
uses: actions/cache/restore@v5
5353
with:
5454
path: CASMcode_clexulator/dist
55-
key: ${{ runner.os }}-libcasm-clexulator-v2-2-0
55+
key: ${{ runner.os }}-libcasm-clexulator-v2-3-1
5656

5757
- name: Install CASM dependencies
5858
run: |

.github/workflows/test-linux-dependencies.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
uses: actions/cache/restore@v5
2525
with:
2626
path: CASMcode_global/dist
27-
key: ${{ runner.os }}-libcasm-global-v2-2-0
27+
key: ${{ runner.os }}-libcasm-global-v2-4-1
2828

2929
- name: checkout libcasm-global
3030
if: steps.cache-libcasm-global-restore.outputs.cache-hit != 'true'
3131
uses: actions/checkout@v6
3232
with:
3333
repository: prisms-center/CASMcode_global
3434
path: CASMcode_global
35-
ref: v2.2.0
35+
ref: v2.4.1
3636

3737
- name: make global
3838
if: steps.cache-libcasm-global-restore.outputs.cache-hit != 'true'
@@ -58,15 +58,15 @@ jobs:
5858
uses: actions/cache/restore@v5
5959
with:
6060
path: CASMcode_crystallography/dist
61-
key: ${{ runner.os }}-libcasm-xtal-v2-2-0
61+
key: ${{ runner.os }}-libcasm-xtal-v2-3-0
6262

6363
- name: checkout libcasm-xtal
6464
if: steps.cache-libcasm-xtal-restore.outputs.cache-hit != 'true'
6565
uses: actions/checkout@v6
6666
with:
6767
repository: prisms-center/CASMcode_crystallography
6868
path: CASMcode_crystallography
69-
ref: v2.2.0
69+
ref: v2.3.0
7070

7171
- name: make xtal
7272
if: steps.cache-libcasm-xtal-restore.outputs.cache-hit != 'true'
@@ -91,15 +91,15 @@ jobs:
9191
uses: actions/cache/restore@v5
9292
with:
9393
path: CASMcode_mapping/dist
94-
key: ${{ runner.os }}-libcasm-mapping-v2-2-0
94+
key: ${{ runner.os }}-libcasm-mapping-v2-4-1
9595

9696
- name: checkout libcasm-mapping
9797
if: steps.cache-libcasm-mapping-restore.outputs.cache-hit != 'true'
9898
uses: actions/checkout@v6
9999
with:
100100
repository: prisms-center/CASMcode_mapping
101101
path: CASMcode_mapping
102-
ref: v2.2.0
102+
ref: v2.4.1
103103

104104
- name: make mapping
105105
if: steps.cache-libcasm-mapping-restore.outputs.cache-hit != 'true'
@@ -124,15 +124,15 @@ jobs:
124124
uses: actions/cache/restore@v5
125125
with:
126126
path: CASMcode_clexulator/dist
127-
key: ${{ runner.os }}-libcasm-clexulator-v2-2-0
127+
key: ${{ runner.os }}-libcasm-clexulator-v2-3-1
128128

129129
- name: checkout libcasm-clexulator
130130
if: steps.cache-libcasm-clexulator-restore.outputs.cache-hit != 'true'
131131
uses: actions/checkout@v6
132132
with:
133133
repository: prisms-center/CASMcode_clexulator
134134
path: CASMcode_clexulator
135-
ref: v2.2.0
135+
ref: v2.3.1
136136

137137
- name: make clexulator
138138
if: steps.cache-libcasm-clexulator-restore.outputs.cache-hit != 'true'

.github/workflows/test-linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,31 +36,31 @@ jobs:
3636
uses: actions/cache/restore@v5
3737
with:
3838
path: CASMcode_global/dist
39-
key: ${{ runner.os }}-libcasm-global-v2-2-0
39+
key: ${{ runner.os }}-libcasm-global-v2-4-1
4040

4141
### libcasm-xtal ###
4242
- name: restore libcasm-xtal cache
4343
id: cache-libcasm-xtal-restore
4444
uses: actions/cache/restore@v5
4545
with:
4646
path: CASMcode_crystallography/dist
47-
key: ${{ runner.os }}-libcasm-xtal-v2-2-0
47+
key: ${{ runner.os }}-libcasm-xtal-v2-3-0
4848

4949
### libcasm-mapping ###
5050
- name: restore libcasm-mapping cache
5151
id: cache-libcasm-mapping-restore
5252
uses: actions/cache/restore@v5
5353
with:
5454
path: CASMcode_mapping/dist
55-
key: ${{ runner.os }}-libcasm-mapping-v2-2-0
55+
key: ${{ runner.os }}-libcasm-mapping-v2-4-1
5656

5757
### libcasm-clexulator ###
5858
- name: restore libcasm-clexulator cache
5959
id: cache-libcasm-clexulator-restore
6060
uses: actions/cache/restore@v5
6161
with:
6262
path: CASMcode_clexulator/dist
63-
key: ${{ runner.os }}-libcasm-clexulator-v2-2-0
63+
key: ${{ runner.os }}-libcasm-clexulator-v2-3-1
6464

6565
- name: Install CASM dependencies
6666
run: |

0 commit comments

Comments
 (0)