GHA: Verify toolchain checksum

This commit is contained in:
Serhii Snitsaruk 2024-05-25 11:38:29 +02:00
parent fc1b99a5b1
commit e8816091e6
No known key found for this signature in database
GPG Key ID: A965EF8799FFEC2D
1 changed files with 14 additions and 9 deletions

View File

@ -7,17 +7,22 @@ inputs:
runs: runs:
using: "composite" using: "composite"
steps: steps:
- name: Set TOOLCHAIN_URL (x86_64) - name: Set up environment
if: inputs.arch == 'x86_64'
shell: bash shell: bash
run: | run: |
echo "TOOLCHAIN_URL=https://downloads.tuxfamily.org/godotengine/toolchains/linux/2021-02-11/x86_64-godot-linux-gnu_sdk-buildroot.tar.bz2" >> "$GITHUB_ENV" # ! Settings:
TOOLCHAIN_64_URL=https://downloads.tuxfamily.org/godotengine/toolchains/linux/2021-02-11/x86_64-godot-linux-gnu_sdk-buildroot.tar.bz2
- name: Set TOOLCHAIN_URL (x86_32) TOOLCHAIN_64_SHA=16c8302fcb676c1f0fb9df73d6cff250ba1f4286
if: inputs.arch == 'x86_32' TOOLCHAIN_32_URL=https://downloads.tuxfamily.org/godotengine/toolchains/linux/2021-02-11/i686-godot-linux-gnu_sdk-buildroot.tar.bz2
shell: bash TOOLCHAIN_32_SHA=6171652abc54ef219e5187bc53660ee4e2f796f4
run: | # ! Export variables:
echo "TOOLCHAIN_URL=https://downloads.tuxfamily.org/godotengine/toolchains/linux/2021-02-11/i686-godot-linux-gnu_sdk-buildroot.tar.bz2" >> "$GITHUB_ENV" if [[ "${{ inputs.arch }}" == "x86_64" ]]; then
echo "TOOLCHAIN_URL=${TOOLCHAIN_64_URL}" >> "$GITHUB_ENV"
echo "TOOLCHAIN_SHA=${TOOLCHAIN_64_SHA}" >> "$GITHUB_ENV"
elif [[ "${{ inputs.arch }}" == "x86_32" ]]; then
echo "TOOLCHAIN_URL=${TOOLCHAIN_32_URL}" >> "$GITHUB_ENV"
echo "TOOLCHAIN_SHA=${TOOLCHAIN_32_SHA}" >> "$GITHUB_ENV"
fi
- name: Cache buildroot - name: Cache buildroot
id: cache-buildroot id: cache-buildroot