This commit is contained in:
parent
dfee92ee5e
commit
1a1c727c0c
1 changed files with 34 additions and 25 deletions
|
@ -4,35 +4,44 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
|
||||||
image: bitnami/minideb:bullseye-arm64
|
|
||||||
steps:
|
steps:
|
||||||
- name: Dependencies
|
|
||||||
run: |
|
|
||||||
apt update -y
|
|
||||||
apt install git wget inetutils-ping dnsutils -y
|
|
||||||
git --version
|
|
||||||
|
|
||||||
- name: CI Health Check
|
|
||||||
run: |
|
|
||||||
ping -c 1 asandikci.com
|
|
||||||
ping -c 1 git.asandikci.com
|
|
||||||
dig asandikci.com
|
|
||||||
dig git.asandikci.com
|
|
||||||
wget https://git.asandikci.com
|
|
||||||
cat index.html
|
|
||||||
pwd
|
|
||||||
ls -la
|
|
||||||
whoami
|
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
github-server-url: 'https://git.asandikci.com'
|
github-server-url: 'https://git.asandikci.com'
|
||||||
|
|
||||||
- name: Setup Ruby
|
|
||||||
uses: https://github.com/ruby/setup-ruby@v1
|
# container:
|
||||||
with:
|
# image: bitnami/minideb:bullseye-arm64
|
||||||
ruby-version: 3.2
|
# steps:
|
||||||
bundler-cache: true
|
# - name: Dependencies
|
||||||
|
# run: |
|
||||||
|
# apt update -y
|
||||||
|
# apt install git wget inetutils-ping dnsutils -y
|
||||||
|
# git --version
|
||||||
|
|
||||||
|
# - name: CI Health Check
|
||||||
|
# run: |
|
||||||
|
# ping -c 1 asandikci.com
|
||||||
|
# ping -c 1 git.asandikci.com
|
||||||
|
# dig asandikci.com
|
||||||
|
# dig git.asandikci.com
|
||||||
|
# wget https://git.asandikci.com
|
||||||
|
# cat index.html
|
||||||
|
# pwd
|
||||||
|
# ls -la
|
||||||
|
# whoami
|
||||||
|
|
||||||
|
# - name: Checkout
|
||||||
|
# uses: actions/checkout@v4
|
||||||
|
# with:
|
||||||
|
# fetch-depth: 0
|
||||||
|
# github-server-url: 'https://git.asandikci.com'
|
||||||
|
|
||||||
|
# - name: Setup Ruby
|
||||||
|
# uses: https://github.com/ruby/setup-ruby@v1
|
||||||
|
# with:
|
||||||
|
# ruby-version: 3.2
|
||||||
|
# bundler-cache: true
|
||||||
|
|
Loading…
Reference in a new issue