From 1a1c727c0c0a2b571f7df6608b858b0c46d49100 Mon Sep 17 00:00:00 2001 From: asandikci Date: Sun, 10 Nov 2024 23:28:36 +0300 Subject: [PATCH] Update .forgejo/workflows/demo.yaml --- .forgejo/workflows/demo.yaml | 59 +++++++++++++++++++++--------------- 1 file changed, 34 insertions(+), 25 deletions(-) diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml index 19e8320..0fe9b80 100644 --- a/.forgejo/workflows/demo.yaml +++ b/.forgejo/workflows/demo.yaml @@ -4,35 +4,44 @@ on: jobs: test: runs-on: docker - container: - image: bitnami/minideb:bullseye-arm64 + 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 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 + + # container: + # image: bitnami/minideb:bullseye-arm64 + # 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 + # 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