mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
fix bottle xz/gz versions.txt race
not ideal since S3 uploads are failing so often RN however ideal sln is complex
This commit is contained in:
parent
395f755010
commit
463ff222dd
20
.github/workflows/build.yml
vendored
20
.github/workflows/build.yml
vendored
|
@ -185,9 +185,6 @@ jobs:
|
|||
tag: darwin-aarch64
|
||||
- os: [self-hosted, linux, ARM64]
|
||||
tag: linux-aarch64
|
||||
compression:
|
||||
- xz
|
||||
- gz
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
|
@ -223,17 +220,22 @@ jobs:
|
|||
working-directory: ${{ steps.tea.outputs.prefix }}
|
||||
|
||||
- run: ./bottle.ts ${{ needs.build.outputs.built }}
|
||||
id: bottle
|
||||
id: bottle-xz
|
||||
env:
|
||||
COMPRESSION: ${{ matrix.compression }}
|
||||
COMPRESSION: xz
|
||||
|
||||
- run: ./bottle.ts ${{ needs.build.outputs.built }}
|
||||
id: bottle-gz
|
||||
env:
|
||||
COMPRESSION: gz
|
||||
|
||||
- name: upload bottles
|
||||
id: upload
|
||||
run: ./upload.ts
|
||||
--pkgs ${{ needs.build.outputs.built }}
|
||||
--srcs ${{ needs.build.outputs.srcs }}
|
||||
--bottles ${{ steps.bottle.outputs.bottles }}
|
||||
--checksums ${{ steps.bottle.outputs.checksums }}
|
||||
--pkgs ${{ needs.build.outputs.built }} ${{ needs.build.outputs.built }}
|
||||
--srcs ${{ needs.build.outputs.srcs }} ${{ needs.build.outputs.srcs }}
|
||||
--bottles ${{ steps.bottle-gz.outputs.bottles }} ${{ steps.bottle-xz.outputs.bottles }}
|
||||
--checksums ${{ steps.bottle-gz.outputs.checksums }} ${{ steps.bottle-xz.outputs.checksums }}
|
||||
env:
|
||||
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
|
||||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
|
|
|
@ -10,7 +10,7 @@ build:
|
|||
tea.xyz/gx/make: '*'
|
||||
tea.xyz/gx/cc: c99
|
||||
script: |
|
||||
./configure --prefix="{{ prefix }}"
|
||||
./configure --prefix="{{prefix}}"
|
||||
make --jobs {{ hw.concurrency }} install
|
||||
|
||||
test:
|
||||
|
|
Loading…
Reference in a new issue