Edit the instruction for a bit more newbs friendly #90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: hlsdl build | |
on: [push, pull_request] | |
jobs: | |
build-macos: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: make | |
run: make | |
- name: download testfile | |
run: ./hlsdl -b -o test.ts "https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/bipbop_4x3_variant.m3u8" | |
- name: verify testfile | |
run: echo "6bf11a9a4be02443d4790e43e6569a614128bad453c5cb327ec74031f6ea6382 test.ts" | shasum -a256 -c | |
build-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: update apt | |
run: sudo apt update | |
- name: install libcurl libcrypto | |
run: sudo apt -y install libcurl4-openssl-dev libssl-dev | |
- name: make | |
run: make | |
- name: download testfile | |
run: ./hlsdl -b -o test.ts "https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/bipbop_4x3_variant.m3u8" | |
- name: verify testfile | |
run: echo "6bf11a9a4be02443d4790e43e6569a614128bad453c5cb327ec74031f6ea6382 test.ts" | shasum -a256 -c |