-
Notifications
You must be signed in to change notification settings - Fork 1
609 lines (608 loc) · 22.3 KB
/
linux.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
name: Nightly builds on linux
on:
push:
paths:
- '.github/workflows/linux.yml'
- 'scripts/**'
pull_request:
paths:
- '.github/workflows/linux.yml'
- 'scripts/**'
schedule:
- cron: "0 2 * * *" # Every night at 2 AM UTC (9 PM EST; 10 PM EDT)
workflow_dispatch:
inputs:
LIBTILEDB_REF:
description: >-
The Git reference (tag, branch, commit) to checkout TileDB-Inc/TileDB
default: dev
TILEDB_PY_REF:
description: >-
The Git reference (tag, branch, commit) to checkout TileDB-Inc/TileDB-Py
default: dev
TILEDB_R_REF:
description: >-
The Git reference (tag, branch, commit) to checkout TileDB-Inc/TileDB-R
default: master
LIBTILEDBVCF_REF:
description: >-
The Git reference (tag, branch, commit) to checkout
TileDB-Inc/TileDB-VCF (for building libtiledbvcf)
default: main
TILEDBVCF_PY_REF:
description: >-
The Git reference (tag, branch, commit) to checkout
TileDB-Inc/TileDB-VCF (for building tiledbvcf-py)
default: main
LIBTILEDBSOMA_REF:
description: >-
The Git reference (tag, branch, commit) to checkout
single-cell-data/TileDB-SOMA (for building libtiledbsoma)
default: main
TILEDBSOMA_PY_REF:
description: >-
The Git reference (tag, branch, commit) to checkout
single-cell-data/TileDB-SOMA (for builing tiledbsoma-py)
default: main
TILEDBSOMA_R_REF:
description: >-
The Git reference (tag, branch, commit) to checkout
single-cell-data/TileDB-SOMA (for building tiledbsoma-r)
default: main
TILEDB_MARIADB_REF:
description: >-
The Git reference (tag, branch, commit) to checkout TileDB-Inc/TileDB-MariaDB
default: master
TILEDB_GO_REF:
description: >-
The Git reference (tag, branch, commit) to checkout TileDB-Inc/TileDB-Go
default: master
jobs:
libtiledb:
runs-on: ubuntu-latest
steps:
- name: Clone TileDB
uses: actions/checkout@v3
with:
repository: TileDB-Inc/TileDB
ref: ${{ github.event.inputs.LIBTILEDB_REF || 'dev' }}
- name: Download release tarball
run: wget https://github.com/TileDB-Inc/TileDB/releases/download/2.18.0/tiledb-linux-x86_64-2.18.0-71ca8b4.tar.gz
- name: Unpack release tarball
run: |
mkdir install-libtiledb
tar xzf tiledb-linux-x86_64-*.tar.gz -C install-libtiledb
ls -R install-libtiledb/
- name: Patch tiledb.pc from release tarball
run: |
new_prefix=prefix=\"$(pwd)/install-libtiledb\"
echo $new_prefix
sed -i "1 s+.*+$new_prefix+" install-libtiledb/lib/pkgconfig/tiledb.pc
cat install-libtiledb/lib/pkgconfig/tiledb.pc
# - name: Configure TileDB
# run: |
# cmake -B build-libtiledb \
# -D CMAKE_INSTALL_PREFIX:PATH=$(pwd)/install-libtiledb/ \
# -D TILEDB_VCPKG=OFF \
# -D TILEDB_WERROR=ON \
# -D TILEDB_SERIALIZATION=ON \
# -D CMAKE_BUILD_TYPE=Release \
# -D VCPKG_TARGET_TRIPLET=x64-linux-release
# - name: Build TileDB
# run: cmake --build build-libtiledb -j $(nproc) --config Release
# - name: Install TileDB
# run: cmake --build build-libtiledb --config Release --target install-tiledb
- name: Upload libtiledb as artifact
uses: actions/upload-artifact@v3
with:
name: nightly-libtiledb-linux
path: |
install-libtiledb/*
retention-days: 14
if-no-files-found: error
# - name: Test TileDB
# run: cmake --build build-libtiledb --target check --config Release
tiledb-py:
runs-on: ubuntu-latest
needs: libtiledb
env:
LD_LIBRARY_PATH: ${{ github.workspace }}/install-libtiledb/lib
PKG_CONFIG_PATH: ${{ github.workspace }}/install-libtiledb/lib/pkgconfig
steps:
- name: Clone TileDB-Py
uses: actions/checkout@v3
with:
repository: TileDB-Inc/TileDB-Py
ref: ${{ github.event.inputs.TILEDB_PY_REF || 'dev' }}
fetch-depth: 0 # fetch everything for python setuptools_scm
- name: Download nightly-libtiledb
uses: actions/download-artifact@v3
with:
name: nightly-libtiledb-linux
path: install-libtiledb
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: python -m pip install --upgrade -r misc/requirements_ci.txt
- name: Build TileDB-Py
run: |
echo $LD_LIBRARY_PATH
python setup.py develop --tiledb=$(pwd)/install-libtiledb/
- name: Import TileDB-Py
run: |
python -c "import tiledb; print('successful import')"
python -c "import tiledb; print(tiledb.libtiledb.version())"
python -c "import tiledb; print(tiledb.version())"
- name: Test TileDB-Py
run: pytest -vv
- name: Create a wheel
run: python setup.py bdist_wheel --tiledb=$(pwd)/install-libtiledb/
- name: Upload Python wheel as artifact
uses: actions/upload-artifact@v3
with:
name: nightly-tiledb-py-linux
path: dist/tiledb-*-linux_x86_64.whl
retention-days: 14
if-no-files-found: error
tiledb-r:
runs-on: ubuntu-latest
needs: libtiledb
env:
_R_CHECK_FORCE_SUGGESTS_: "FALSE"
steps:
- name: Clone TileDB-R
uses: actions/checkout@v3
with:
repository: TileDB-Inc/TileDB-R
ref: ${{ github.event.inputs.TILEDB_R_REF || 'master' }}
- name: Download nightly-libtiledb
uses: actions/download-artifact@v3
with:
name: nightly-libtiledb-linux
path: install-libtiledb
- name: Bootstrap
run: ./.github/r-ci.sh bootstrap
- name: Dependencies
run: ./.github/r-ci.sh install_all
- name: Build
run: R CMD build --no-manual --no-build-vignettes .
- name: Install
run: |
R CMD INSTALL --configure-args=--with-tiledb=$(pwd)/install-libtiledb --build tiledb_*.tar.gz
- name: Upload R binary tarball as artifact
uses: actions/upload-artifact@v3
with:
name: nightly-tiledb-r-linux
path: tiledb_*_R_x86_64-pc-linux-gnu.tar.gz
retention-days: 14
if-no-files-found: error
- name: Test
run: R -e 'tinytest::test_package("tiledb")'
libtiledbvcf:
runs-on: ubuntu-latest
needs: libtiledb
env:
LD_LIBRARY_PATH: ${{ github.workspace }}/install-libtiledb/lib
steps:
- name: Clone TileDB-VCF
uses: actions/checkout@v3
with:
repository: TileDB-Inc/TileDB-VCF
ref: ${{ github.event.inputs.LIBTILEDBVCF_REF || 'main' }}
- name: Download nightly-libtiledb
uses: actions/download-artifact@v3
with:
name: nightly-libtiledb-linux
path: install-libtiledb
- name: Setup
run: |
sudo apt-get update
sudo apt-get install --yes cmake
- name: Configure libtiledbvcf
run: |
cmake -S libtiledbvcf -B build-libtiledbvcf \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_PREFIX_PATH=$(pwd)/install-libtiledb/ \
-D CMAKE_INSTALL_PREFIX:PATH=$(pwd)/install-libtiledbvcf/ \
-D OVERRIDE_INSTALL_PREFIX=OFF \
-D TILEDB_WERROR=OFF
- name: Build libtiledbvcf
run: cmake --build build-libtiledbvcf -j $(nproc) --config Release
- name: Install libtiledbvcf
run: |
cmake --build build-libtiledbvcf --config Release --target install-libtiledbvcf
ls -R install-libtiledbvcf/
- name: Upload libtiledbvcf as artifact
uses: actions/upload-artifact@v3
with:
name: nightly-libtiledbvcf-linux
path: |
install-libtiledbvcf/*
retention-days: 14
if-no-files-found: error
- name: libtiledbvcf version
run: ./install-libtiledbvcf/bin/tiledbvcf version
- name: Confirm linking
run: ldd install-libtiledbvcf/lib/libtiledbvcf.so
- name: Install bcftools (for tests)
run: sudo apt-get install --yes bcftools
- name: Test libtiledbvcf
run: |
make -j $(nproc) -C build-libtiledbvcf/libtiledbvcf tiledb_vcf_unit
./build-libtiledbvcf/libtiledbvcf/test/tiledb_vcf_unit
# cli tests (require bcftools)
# USAGE: run-cli-tests.sh <build-dir> <inputs-dir>
libtiledbvcf/test/run-cli-tests.sh build-libtiledbvcf libtiledbvcf/test/inputs
tiledbvcf-py:
runs-on: ubuntu-latest
needs: [libtiledb, libtiledbvcf, tiledb-py]
env:
LD_LIBRARY_PATH: "${{ github.workspace }}/install-libtiledb/lib:${{ github.workspace }}/install-libtiledbvcf/lib"
steps:
- name: Clone TileDB-VCF
uses: actions/checkout@v3
with:
repository: TileDB-Inc/TileDB-VCF
ref: ${{ github.event.inputs.TILEDBVCF_PY_REF || 'main' }}
fetch-depth: 0 # fetch everything for python setuptools_scm
- name: Download nightly-libtiledb
uses: actions/download-artifact@v3
with:
name: nightly-libtiledb-linux
path: install-libtiledb
- name: Download nightly-libtiledbvcf
uses: actions/download-artifact@v3
with:
name: nightly-libtiledbvcf-linux
path: install-libtiledbvcf
- name: Download nightly-tiledb-py
uses: actions/download-artifact@v3
with:
name: nightly-tiledb-py-linux
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: python -m pip install \
dask \
distributed \
'fsspec<2023.3.0' \
pyarrow==10.0.1 \
pandas \
pybind11 \
pytest \
setuptools \
setuptools_scm \
setuptools_scm_git_archive \
wheel
- name: Install nightly tiledb-py
run: |
pip install tiledb-*-linux_x86_64.whl
pip list
- name: Build tiledbvcf-py
run: |
echo $LD_LIBRARY_PATH
cd apis/python
python setup.py install --libtiledbvcf=$(pwd)/install-libtiledbvcf/
- name: Confirm linking
run: ldd $pythonLocation/lib/python*/site-packages/tiledbvcf-*-py*-linux-x86_64.egg/tiledbvcf/libtiledbvcf.cpython-*-x86_64-linux-gnu.so
- name: Install bcftools (for tests)
run: |
sudo apt-get update
sudo apt-get install --yes bcftools
- name: Test tiledbvcf-py
run: |
python -c "import tiledbvcf; print(tiledbvcf.version)"
cd apis/python
pytest
- name: Create a wheel
run: |
cd apis/python
python setup.py bdist_wheel --libtiledbvcf=$(pwd)/install-libtiledbvcf/
- name: Upload Python wheel as artifact
uses: actions/upload-artifact@v3
with:
name: nightly-tiledbvcf-py-linux
path: dist/tiledbvcf-*-linux_x86_64.whl
retention-days: 14
if-no-files-found: error
libtiledbsoma:
runs-on: ubuntu-latest
needs: [libtiledb]
env:
TileDB_DIR: ${{ github.workspace }}/install-libtiledb
LD_LIBRARY_PATH: ${{ github.workspace }}/install-libtiledb/lib
steps:
- name: Clone TileDB-SOMA
uses: actions/checkout@v3
with:
repository: single-cell-data/TileDB-SOMA
ref: ${{ github.event.inputs.LIBTILEDBSOMA_REF || 'main' }}
- name: Download nightly-libtiledb
uses: actions/download-artifact@v3
with:
name: nightly-libtiledb-linux
path: install-libtiledb
- name: Setup
run: |
sudo apt-get update
sudo apt-get install --yes cmake
- name: Configure libtiledbsoma
run: |
cmake -S libtiledbsoma -B build-libtiledbsoma \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_PREFIX_PATH=$(pwd)/install-libtiledb/ \
-D CMAKE_INSTALL_PREFIX:PATH=$(pwd)/install-libtiledbsoma/ \
-D OVERRIDE_INSTALL_PREFIX=OFF \
-D DOWNLOAD_TILEDB_PREBUILT=OFF \
-D FORCE_BUILD_TILEDB=OFF
- name: Build libtiledbsoma
run: cmake --build build-libtiledbsoma -j $(nproc)
- name: Install libtiledbsoma
run: |
cmake --build build-libtiledbsoma --target install-libtiledbsoma
ls -R $(pwd)/install-libtiledb/
- name: Upload libtiledbsoma as artifact
uses: actions/upload-artifact@v3
with:
name: nightly-libtiledbsoma-linux
path: |
install-libtiledbsoma/*
- name: Confirm linking
run: ldd install-libtiledbsoma/lib/libtiledbsoma.so
- name: Test libtiledbsoma
run: |
cmake --build build-libtiledbsoma/libtiledbsoma --target build_tests -j $(nproc)
ctest --test-dir build-libtiledbsoma/libtiledbsoma -C Release --verbose --rerun-failed --output-on-failure
tiledbsoma-py:
runs-on: ubuntu-latest
needs: [libtiledb, libtiledbsoma, tiledb-py]
env:
LD_LIBRARY_PATH: "${{ github.workspace }}/install-libtiledb/lib:${{ github.workspace }}/install-libtiledbsoma/lib"
TILEDB_PATH: ${{ github.workspace }}/install-libtiledb
TILEDBSOMA_PATH: ${{ github.workspace }}/install-libtiledbsoma
PKG_CONFIG_PATH: "${{ github.workspace }}/install-libtiledb/lib/pkgconfig:${{ github.workspace }}/install-libtiledbsoma/lib/pkgconfig"
steps:
- name: Clone TileDB-SOMA
uses: actions/checkout@v3
with:
repository: single-cell-data/TileDB-SOMA
ref: ${{ github.event.inputs.TILEDBSOMA_PY_REF || 'main' }}
fetch-depth: 0 # fetch everything for python setuptools_scm
- name: Download nightly-libtiledb
uses: actions/download-artifact@v3
with:
name: nightly-libtiledb-linux
path: install-libtiledb
- name: Download nightly-libtiledbsoma
uses: actions/download-artifact@v3
with:
name: nightly-libtiledbsoma-linux
path: install-libtiledbsoma
- name: Download nightly-tiledb-py
uses: actions/download-artifact@v3
with:
name: nightly-tiledb-py-linux
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: python -m pip install -r apis/python/requirements_dev.txt wheel
- name: Install nightly tiledb-py
run: |
pip install tiledb-*-linux_x86_64.whl
pip list
- name: Install tiledbsoma-py
run: |
python -m pip -v install -e apis/python
pip list
- name: Search for pybind11 headers
run: |
find /opt/hostedtoolcache/Python/3.11.6/x64 -iname pybind11.h
find /opt/hostedtoolcache/Python/3.11.6/x64 -iname numpy.h
- name: Confirm INCLUDEPY
run: python -c "import sysconfig; print(sysconfig.get_config_var('INCLUDEPY'))"
- name: Confirm linking
run: |
find apis/python -name '*.so'
find apis/python -name '*.so' | xargs ldd
- name: Remove extra libtiledbsoma.so
# Deleting this bundled libtiledbsoma.so to ensure the external
# shared object is being used in the tests
run: rm -f apis/python/src/tiledbsoma/libtiledbsoma.so
- name: Test tiledbsoma-py
run: |
python -c "import tiledbsoma; print('successful import')"
python -c "import tiledbsoma; print(tiledbsoma.pytiledbsoma.version())"
python -c "import tiledbsoma; print(f'tiledbsoma-py={tiledbsoma.__version__}')"
# Obtain test data
cd test
tar zxf soco.tgz
cd ..
# Run test suite
PYTHONPATH=$(pwd)/apis/python/src python -m pytest libtiledbsoma/test
PYTHONPATH=$(pwd)/apis/python/src python -m pytest apis/python/tests
- name: Create a wheel
run: |
cd apis/python
python setup.py bdist_wheel
- name: Upload Python wheel as artifact
uses: actions/upload-artifact@v3
with:
name: nightly-tiledbsoma-py-linux
path: dist/tiledbsoma-*-linux_x86_64.whl
retention-days: 14
if-no-files-found: error
tiledbsoma-r:
runs-on: ubuntu-latest
needs: [libtiledb, libtiledbsoma, tiledb-r]
env:
LD_LIBRARY_PATH: "${{ github.workspace }}/install-libtiledb/lib:${{ github.workspace }}/install-libtiledbsoma/lib"
PKG_CONFIG_PATH: "${{ github.workspace }}/install-libtiledb/lib/pkgconfig:${{ github.workspace }}/install-libtiledbsoma/lib/pkgconfig"
steps:
- name: Clone TileDB-SOMA
uses: actions/checkout@v3
with:
repository: single-cell-data/TileDB-SOMA
ref: ${{ github.event.inputs.TILEDBSOMA_R_REF || 'main' }}
- name: Download nightly-libtiledb
uses: actions/download-artifact@v3
with:
name: nightly-libtiledb-linux
path: install-libtiledb
- name: Download nightly-libtiledbsoma
uses: actions/download-artifact@v3
with:
name: nightly-libtiledbsoma-linux
path: install-libtiledbsoma
- name: Download nightly-tiledb-r
uses: actions/download-artifact@v3
with:
name: nightly-tiledb-r-linux
- name: Bootstrap
run: cd apis/r && tools/r-ci.sh bootstrap
- name: Install nightly tiledb-r
run: R CMD INSTALL tiledb_*_R_x86_64-pc-linux-gnu.tar.gz
- name: Dependencies
run: cd apis/r && tools/r-ci.sh install_all
- name: Build
run: |
export CXX17FLAGS="-Wno-deprecated-declarations -Wno-deprecated"
cd apis/r && R CMD build --no-manual --no-build-vignettes .
- name: Install
run:
cd apis/r && R CMD INSTALL --install-tests --build tiledbsoma_*.tar.gz
- name: Upload R binary tarball as artifact
uses: actions/upload-artifact@v3
with:
name: nightly-tiledbsoma-r-linux
path: apis/r/tiledbsoma_*_R_x86_64-pc-linux-gnu.tar.gz
retention-days: 14
if-no-files-found: error
- name: Test
run:
Rscript -e 'testthat::test_package("tiledbsoma")'
tiledb-mariadb:
runs-on: ubuntu-latest
needs: [libtiledb]
steps:
- name: Clone TileDB-MariaDB
uses: actions/checkout@v3
with:
repository: TileDB-Inc/TileDB-MariaDB
ref: ${{ github.event.inputs.TILEDB_MARIADB_REF || 'master' }}
tiledb-go:
runs-on: ubuntu-latest
needs: [libtiledb]
steps:
- name: Clone TileDB-Go
uses: actions/checkout@v3
with:
repository: TileDB-Inc/TileDB-Go
ref: ${{ github.event.inputs.TILEDB_GO_REF || 'master' }}
- name: Download nightly-libtiledb
uses: actions/download-artifact@v3
with:
name: nightly-libtiledb-linux
path: install-libtiledb
- name: Install dependencies
run: go get -t .
- name: Test TileDB-Go
run: |
export CPATH=$(pwd)/install-libtiledb/include
export LIBRARY_PATH=$(pwd)/install-libtiledb/lib
export LD_LIBRARY_PATH=$(pwd)/install-libtiledb/lib
go test -v ./...
build-all:
# this is simply a target to build everything locally with `act` without
# creating a new release
name: Build everything
runs-on: ubuntu-latest
needs: [libtiledb, tiledb-py, tiledb-r, libtiledbvcf, tiledbvcf-py, libtiledbsoma,
tiledbsoma-py, tiledbsoma-r, tiledb-mariadb, tiledb-go]
steps:
- run: echo "Success! Everything was built"
create-release:
name: Create a new release
runs-on: ubuntu-latest
permissions:
contents: write
env:
GH_TOKEN: ${{ github.token }}
TZ: "America/New_York"
steps:
- uses: actions/checkout@v3
- name: Create release
run: |
the_date=$(date +%Y-%m-%d)
if ! gh release list | cut -f3 | grep -q $the_date
then
echo "Creating new release: $the_date"
gh release create $the_date
else
echo "Release already exists: $the_date"
fi
upload-libtiledb:
runs-on: ubuntu-latest
needs: [create-release, libtiledb]
permissions:
contents: write
env:
GH_TOKEN: ${{ github.token }}
TZ: "America/New_York"
steps:
- uses: actions/checkout@v3
- name: Download nightly-libtiledb
uses: actions/download-artifact@v3
with:
name: nightly-libtiledb-linux
path: install-libtiledb
- name: Upload libtiledb to release
run: |
the_date=$(date +%Y-%m-%d)
tar -C install-libtiledb -cvzf libtiledb-${the_date}.tar.gz ./
gh release upload ${the_date} libtiledb-${the_date}.tar.gz --clobber
upload-libtiledbvcf:
runs-on: ubuntu-latest
needs: [create-release, libtiledbvcf]
permissions:
contents: write
env:
GH_TOKEN: ${{ github.token }}
TZ: "America/New_York"
steps:
- uses: actions/checkout@v3
- name: Download nightly-libtiledbvcf
uses: actions/download-artifact@v3
with:
name: nightly-libtiledbvcf-linux
path: install-libtiledbvcf
- name: Upload libtiledbvcf to release
run: |
the_date=$(date +%Y-%m-%d)
tar -C install-libtiledbvcf -cvzf libtiledbvcf-${the_date}.tar.gz ./
gh release upload ${the_date} libtiledbvcf-${the_date}.tar.gz --clobber
upload-libtiledbsoma:
runs-on: ubuntu-latest
needs: [create-release, libtiledbsoma]
permissions:
contents: write
env:
GH_TOKEN: ${{ github.token }}
TZ: "America/New_York"
steps:
- uses: actions/checkout@v3
- name: Download nightly-libtiledbsoma
uses: actions/download-artifact@v3
with:
name: nightly-libtiledbsoma-linux
path: install-libtiledbsoma
- name: Upload libtiledbsoma to release
run: |
the_date=$(date +%Y-%m-%d)
tar -C install-libtiledbsoma -cvzf libtiledbsoma-${the_date}.tar.gz ./
gh release upload ${the_date} libtiledbsoma-${the_date}.tar.gz --clobber