summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOneric <oneric@oneric.stub>2022-07-09 15:54:32 +0200
committerOneric <oneric@oneric.stub>2022-07-29 17:51:57 +0200
commita28e2c1390df7f9b3069650bd60de26077074f97 (patch)
tree5da659f1de85ee58d90093aba3a16c1715256d2d
parent4e636c8d38368e67d4649a728f0100d230c473d4 (diff)
downloadlibass-a28e2c1390df7f9b3069650bd60de26077074f97.tar.bz2
libass-a28e2c1390df7f9b3069650bd60de26077074f97.tar.xz
ci/gha: fix env vars for Docker containers
The step's env settings are not forwarded to containers.
-rw-r--r--.github/workflows/ghci.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/ghci.yml b/.github/workflows/ghci.yml
index d9e84bc..47a8497 100644
--- a/.github/workflows/ghci.yml
+++ b/.github/workflows/ghci.yml
@@ -130,11 +130,13 @@ jobs:
> /tmp/windowsapp.specs
- name: configure
- env:
- CC: "${{ matrix.cc }}\
+ run: |
+ export CC="${{ matrix.cc }}\
${{ matrix.extra_cflags && ' ' }}${{ matrix.extra_cflags }}"
- LD: "${{ matrix.ld }}"
- run: ./autogen.sh && ./configure
+ export LD="${{ matrix.ld }}"
+
+ ./autogen.sh
+ ./configure
- name: compile
if: matrix.do_distc != 'yes'