-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (35 loc) · 1.04 KB
/
lzw.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
name: 'Build LZW'
on:
# Triggers the workflow on push or pull request events but only for the main branch
# push:
# branches: [ main ]
# pull_request:
# branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build_qoi:
name: LZW
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macOS-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rebol
uses: oldes/[email protected]
- name: Build lzwtester utility
run: ./rebol3 siskin.r3 utility/lzw lzwtester
- name: Build lzwfilter utility
run: ./rebol3 siskin.r3 utility/lzw lzwfilter
###############################################################################
# Collecting build artifacts...
- uses: actions/upload-artifact@v2
with:
name: qoiconv-${{matrix.os}}-CI-${{github.run_id}}
path: ./tree/utility/build/lzw*