Skip to content

Commit

Permalink
Merge pull request #1193 from bkmgit/tests
Browse files Browse the repository at this point in the history
Run tests
  • Loading branch information
Barenboim authored Feb 23, 2023
2 parents 4097211 + 5f81f8e commit 5911036
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,50 @@ on:

jobs:
build:

name: ubuntu
runs-on: ubuntu-latest

steps:
- name: setup
run: |
sudo apt-get update
sudo apt-get install cmake g++ libgtest-dev make libssl-dev
sudo apt-get install redis valgrind
- uses: actions/checkout@v2
- name: make
run: make
- name: make check
run: make check
- name: make tutorial
run: make tutorial

test:
name: fedora
runs-on: ubuntu-latest

steps:
- name: Setup Podman
run: |
sudo apt update
sudo apt-get -y install podman
podman pull fedora:rawhide
- name: Get source
uses: actions/checkout@v3
with:
path: 'workflow'
- name: Create container and run tests
run: |
{
echo 'FROM fedora:rawhide'
echo 'RUN dnf -y update'
echo 'RUN dnf -y install cmake gcc-c++ gtest-devel make'
echo 'RUN dnf -y install openssl-devel redis valgrind'
echo 'RUN dnf clean all'
echo 'COPY workflow workflow'
echo 'WORKDIR /workflow'
echo "RUN cmake"
echo "RUN make"
echo "RUN make check"
echo "RUN make tutorial"
} > podmanfile
podman build --tag fedorarawhide -f ./podmanfile

0 comments on commit 5911036

Please sign in to comment.