Skip to content

Commit 1255537

Browse files
committed
chore: clean up release workflow after native-tls switch
Remove cmake/nasm install step and --action_env=PATH hack, no longer needed now that aws-lc-sys is eliminated.
1 parent df7d6d3 commit 1255537

1 file changed

Lines changed: 1 addition & 10 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@ jobs:
3939
if: runner.os == 'Linux'
4040
run: sudo apt-get update && sudo apt-get install -y libssl-dev pkg-config
4141

42-
- name: Install system dependencies (Windows)
43-
if: runner.os == 'Windows'
44-
run: choco install cmake nasm -y
45-
4642
- name: Setup Bazel
4743
uses: bazel-contrib/setup-bazel@0.14.0
4844
with:
@@ -52,11 +48,6 @@ jobs:
5248

5349
- name: Build release binary
5450
run: bazel build //:loopal -c opt
55-
if: runner.os != 'Windows'
56-
57-
- name: Build release binary (Windows)
58-
if: runner.os == 'Windows'
59-
run: bazel build //:loopal -c opt --action_env=PATH
6051

6152
- name: Package (Unix)
6253
if: runner.os != 'Windows'
@@ -76,7 +67,7 @@ jobs:
7667
run: |
7768
$archiveDir = "$env:BINARY_NAME-${{ github.ref_name }}-${{ matrix.target }}"
7869
New-Item -ItemType Directory -Path $archiveDir -Force
79-
$binPath = (bazel cquery --output=files //:loopal -c opt --action_env=PATH 2>$null).Trim()
70+
$binPath = (bazel cquery --output=files //:loopal -c opt 2>$null).Trim()
8071
Copy-Item $binPath "$archiveDir/"
8172
if (Test-Path "README.md") { Copy-Item "README.md" "$archiveDir/" }
8273
if (Test-Path "LICENSE") { Copy-Item "LICENSE" "$archiveDir/" }

0 commit comments

Comments
 (0)