-
Notifications
You must be signed in to change notification settings - Fork 3
40 lines (40 loc) · 1.11 KB
/
ubuntu-Mysql80.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
name: check
on:
# push:
# branches:
# - master
schedule:
- cron: '0 0 * * *'
jobs:
ubuntu-1804:
name: Mysql8.0 on ubuntu:18.04
runs-on: ubuntu-18.04
env:
SCRIPT_URL: https://gitee.com/Xiechengqi/scripts/raw/master/install
steps:
- name: Mysql8.0
run: |
curl -SsL $SCRIPT_URL/Mysql/install.sh | sudo bash -s 8.0
- name: check
run: |
sleep 10
sudo systemctl status mysqld
sudo ss -plunt
sudo ls --color=auto -alht /data/*
echo "🍏 Mysql8.0 Ubuntu 18.04 install script is ${{ job.status }}"
ubuntu-2004:
name: Mysql8.0 on ubuntu:20.04
runs-on: ubuntu-20.04
env:
SCRIPT_URL: https://gitee.com/Xiechengqi/scripts/raw/master/install
steps:
- name: Mysql8.0
run: |
curl -SsL $SCRIPT_URL/Mysql/install.sh | sudo bash -s 8.0
- name: check
run: |
sleep 10
sudo systemctl status mysqld
sudo ss -plunt
sudo ls --color=auto -alht /data/*
echo "🍏 Mysql8.0 Ubuntu 20.04 install script is ${{ job.status }}"