mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-13 13:45:10 +00:00
[CI] Just generate ZIPs
This commit is contained in:
parent
5ffd413e67
commit
f96e0a95bd
2 changed files with 16 additions and 9 deletions
|
|
@ -1,5 +1,5 @@
|
|||
name: Builds static Parsee for a release.
|
||||
on: [release, workflow_dispatch]
|
||||
name: Builds static Parsee
|
||||
on: [push]
|
||||
jobs:
|
||||
compile:
|
||||
strategy:
|
||||
|
|
@ -75,12 +75,11 @@ jobs:
|
|||
- name: Create a final archive
|
||||
run: |
|
||||
cd parsee
|
||||
echo "NAM=parsee-$(uname)-$(uname -m).tar.gz" >> $GITHUB_ENV
|
||||
tar -czvf bins.tar.gz bins
|
||||
echo "DIR=$PWD/bins.tar.gz" >> $GITHUB_ENV
|
||||
- name: Upload it all(as a ZIP of a .TGZ)
|
||||
echo "NAM=parsee-$(uname)-$(uname -m)" >> $GITHUB_ENV
|
||||
echo "DIR=$PWD/bins" >> $GITHUB_ENV
|
||||
- name: Upload it all(as a ZIP)
|
||||
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ env.NAM }}
|
||||
compression-level: 9
|
||||
path: ${{ env.DIR }}
|
||||
compression-level: 9
|
||||
|
|
|
|||
|
|
@ -2,9 +2,17 @@ name: Checks Parsee's correctness on GCC+Debian
|
|||
on: [push]
|
||||
jobs:
|
||||
compile:
|
||||
runs-on: debian
|
||||
strategy:
|
||||
matrix:
|
||||
distro:
|
||||
- debian
|
||||
arch:
|
||||
- amd64
|
||||
runs-on:
|
||||
- ${{ matrix.distro }}
|
||||
- ${{ matrix.arch }}
|
||||
container:
|
||||
image: debian
|
||||
image: ${{ matrix.distro }}
|
||||
steps:
|
||||
- name: Install LMDB+OpenSSL tools
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue