Skip to content

Commit 675740b

Browse files
authored
Merge pull request #4 from savi-lang/fix/pin-freebsd-sysroot
Fix FreeBSD by pinning to a stable 13.1 release.
2 parents 65caae5 + 2c74058 commit 675740b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -246,18 +246,18 @@ runs:
246246
id: cache-x-x86_64-freebsd
247247
uses: actions/cache@v3
248248
with:
249-
key: savi-build-release-x86_64-freebsd-13-20220922
249+
key: savi-build-release-x86_64-freebsd-13-20230202
250250
path: /tmp/x-x86_64-freebsd/root
251251
- if: >
252252
(inputs.x86_64-unknown-freebsd == 'true'
253253
|| inputs.all-platforms == 'true')
254254
&& steps.cache-x-x86_64-freebsd.outputs.cache-hit != 'true'
255255
shell: bash
256256
run: |
257-
sysroot_sha256=e5ed6d9d27bc105b2c4a6cd2d49759cd0b15b6ff39e1adc7ea3a36eb91cca0af && \
257+
sysroot_sha256=3f902e12cbc5680aa28447eee7f3e40eb29ab942e5df952a1db2325cefcedb1c && \
258258
rm -rf /tmp/x-x86_64-freebsd && mkdir -p /tmp/x-x86_64-freebsd/root && \
259259
cd /tmp/x-x86_64-freebsd && \
260-
wget http://pkg.freebsd.org/FreeBSD:13:amd64/latest/All/amd64-freebsd-sysroot-a2022.12.14.pkg \
260+
wget http://pkg.freebsd.org/FreeBSD:13:amd64/release_1/All/amd64-freebsd-sysroot-a2021.11.09.pkg \
261261
-O sysroot.pkg && \
262262
echo $sysroot_sha256' sysroot.pkg' | sha256sum -c - && \
263263
tar -xf sysroot.pkg -C root && \

0 commit comments

Comments
 (0)