mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-04 21:01:36 +00:00
Update build.yml
This commit is contained in:
15
.github/workflows/build.yml
vendored
15
.github/workflows/build.yml
vendored
@@ -71,6 +71,7 @@ jobs:
|
|||||||
arch: x86_64
|
arch: x86_64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
@@ -81,8 +82,13 @@ jobs:
|
|||||||
id: cache-python-ssl
|
id: cache-python-ssl
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
bin
|
bin.tar.xz
|
||||||
key: gam-${{ matrix.jid }}-20220901
|
key: gam-${{ matrix.jid }}-20220901-01
|
||||||
|
|
||||||
|
- name: Untar Cache archive
|
||||||
|
if: steps.cache-python-ssl.outputs.cache-hit == 'true'
|
||||||
|
run: |
|
||||||
|
tar xvvf bin.tar.xz
|
||||||
|
|
||||||
- name: Use pre-compiled Python for testing
|
- name: Use pre-compiled Python for testing
|
||||||
if: matrix.python != ''
|
if: matrix.python != ''
|
||||||
@@ -709,6 +715,11 @@ jobs:
|
|||||||
src/*.zip
|
src/*.zip
|
||||||
src/*.msi
|
src/*.msi
|
||||||
|
|
||||||
|
- name: Tar Cache archive
|
||||||
|
if: steps.cache-python-ssl.outputs.cache-hit != 'true'
|
||||||
|
run: |
|
||||||
|
tar cJvvf bin.tar.xz bin/
|
||||||
|
|
||||||
publish:
|
publish:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build
|
needs: build
|
||||||
|
|||||||
Reference in New Issue
Block a user