diff options
author | Signal Linden <signal@lindenlab.com> | 2022-10-10 09:57:29 -0700 |
---|---|---|
committer | Signal Linden <signal@lindenlab.com> | 2022-10-10 09:57:29 -0700 |
commit | f2f9b32e753972d83087b9201a0073e208a0dd75 (patch) | |
tree | 0c2cfa7d81145f0ee945886e9043ee75b418820c /.github/workflows/build.yaml | |
parent | 6b137c7fd65b50cdba69b789e3ead1728fc1f000 (diff) |
Use pre-installed python
Diffstat (limited to '.github/workflows/build.yaml')
-rw-r--r-- | .github/workflows/build.yaml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3d66c02e75..bb0fb2efd8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -33,21 +33,16 @@ jobs: repository: secondlife/build-variables ref: viewer path: .build-variables - - - name: Install python - uses: actions/setup-python@v4 - with: - python-version: 3.x - name: Install autobuild - run: pip install autobuild + run: pip3 install autobuild - name: Cache autobuild packages uses: actions/cache@v3 id: cache-installables with: path: .autobuild-installables - key: ${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.configuration }}-${{ hashFiles('autobuild.xml') }} + key: ${{ matrix.os }}-${{ matrix.addrsize }}-${{ matrix.configuration }}-${{ hashFiles('autobuild.xml') }} - name: Build run: | |