diff options
| author | Eli Schwartz <eschwartz93@gmail.com> | 2024-01-02 02:25:30 -0500 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2024-01-02 02:33:30 -0500 |
| commit | 8e366b87599f666eed865b27f7cf4732dbe6a565 (patch) | |
| tree | b315fdca3ca5165755299f27878aa081a105f4e5 /.github | |
| parent | e110faed27616ea2a18eac160c335c3f039ac479 (diff) | |
| download | meson-8e366b87599f666eed865b27f7cf4732dbe6a565.tar.gz | |
CI: fix even more brokenness in the macos CI
Commit 191449f60879a622661b96600babaec67477d5bb has numerous issues, and
being completely invalid yml syntax was just the tip of the iceberg.
In this case, it fails the github schema, which requires that env be
adjunct to a job or step definition, rather than its own thing. It did
not even make sense in context, since the purpose of the variable is to
modify brew.
Fixes: #12644
Fixes: #12681
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/macos.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index efa2b2d05..bdc5f20c9 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -101,7 +101,6 @@ jobs: CPPFLAGS: "-I/usr/local/include" LDFLAGS: "-L/usr/local/lib" MESON_ARGS: --unity=${{ matrix.unity }} - HOMEBREW_NO_AUTO_UPDATE: 1 CI: 1 # These cannot evaluate anything, so we cannot set PATH or SDKROOT here run: | @@ -124,13 +123,13 @@ jobs: Qt4macos: runs-on: macos-latest + env: + HOMEBREW_NO_AUTO_UPDATE: 1 steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: python-version: '3.x' - - env: - HOMEBREW_NO_AUTO_UPDATE: 1 - run: python -m pip install -e . - run: brew install pkg-config ninja gcc - run: brew tap cartr/qt4 |
