Check for the openssl library and always assign OPENSSL_LIBS #2360
Workflow file for this run
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: Test "make dist" | |
on: | |
push: | |
branches: [ OVIS-4 ] | |
pull_request: | |
branches: [ OVIS-4 ] | |
jobs: | |
build: | |
# Make sure that create-release.yaml has the same "runs-on" and | |
# "container" as used here. | |
runs-on: ubuntu-20.04 | |
container: | |
image: ovishpc/ovis-ubuntu-build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: autogen | |
run: sh autogen.sh | |
- name: configure | |
run: ./configure | |
- name: make dist | |
run: make dist |