Update tutorial-12-mysql_cli.md #1602
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: ci build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
ubuntu-cmake: | |
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 | |
fedora-cmake: | |
name: fedora | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: cat /etc/os-release | |
- name: install dependencies | |
run: | | |
dnf -y update | |
dnf -y install cmake gcc-c++ gtest-devel make | |
dnf -y install openssl-devel redis valgrind | |
- name: make | |
run: make | |
- name: make check | |
run: make check | |
- name: make tutorial | |
run: make tutorial | |