Skip to content

Commit 86724bc

Browse files
committed
Fix bad usage of env in matrix.
1 parent 098085f commit 86724bc

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/cpp-packaging.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ on:
2121

2222
env:
2323
# Packaging prerequisites
24-
# Binutils 2.35.1 released Sep 19, 2020
25-
binutilsVerLinux: "2.35.1"
26-
# On Mac, use an older Binutils to avoid corrupted libraries.
27-
binutilsVerDarwin: "2.28.1"
2824
# Demumble 1.1.0 released Nov 13, 2018
2925
demumbleVer: "1.1.0"
3026
# Use SHA256 for hashing files.
@@ -69,10 +65,12 @@ jobs:
6965
include:
7066
- os: ubuntu-latest
7167
tools_platform: linux
72-
binutils_version: ${{ env.binutilsVerLinux }}
68+
# Binutils 2.35.1 released Sep 19, 2020
69+
binutils_version: "2.35.1"
7370
- os: macos-latest
7471
tools_platform: darwin
75-
binutils_version: ${{ env.binutilsVerDarwin }}
72+
# On Mac, use an older Binutils to avoid corrupted libraries.
73+
binutils_version: "2.28.1"
7674
steps:
7775
- name: setup Xcode version (macos)
7876
if: runner.os == 'macOS'

0 commit comments

Comments
 (0)