From fcd7b96de70a6480b3d7ec314d1a32853f90e3db Mon Sep 17 00:00:00 2001 From: StefanSchippers <69359491+StefanSchippers@users.noreply.github.com> Date: Mon, 5 May 2025 10:47:38 +0200 Subject: [PATCH] Delete .github/workflows directory --- .github/workflows/bash.sh | 11 ----------- .github/workflows/blank.yml | 14 -------------- .github/workflows/ci.yaml | 25 ------------------------- 3 files changed, 50 deletions(-) delete mode 100644 .github/workflows/bash.sh delete mode 100644 .github/workflows/blank.yml delete mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/bash.sh b/.github/workflows/bash.sh deleted file mode 100644 index 1b24909f..00000000 --- a/.github/workflows/bash.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -# Print current directory -echo "Current directory: $(pwd)" - -# List files in the current directory -echo "Files in current directory:" -ls - -# Display the current date and time -echo "Current date and time: $(date)" diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml deleted file mode 100644 index 775a0f24..00000000 --- a/.github/workflows/blank.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: Bash Script -on: - workflow_dispatch: - -jobs: - bash-script: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Run Bash script - run: bash ./bash.sh diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index 36e6c4b8..00000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,25 +0,0 @@ -name: CI checks - -on: [ push, pull_request ] - -jobs: - build: - - runs-on: ubuntu-latest - - name: Compilation - - steps: - - name: Install dependencies - run: sudo apt-get install -y flex bison gawk tcl tcl-dev tk tk-dev libcairo2 libcairo2-dev xcb libxcb1 libxcb1-dev libxrender-dev libxpm-dev libxcb-render0-dev libx11-xcb1 libx11-xcb-dev - - name: Checkout source - uses: actions/checkout@v3 - - name: configure - run: ./configure - - name: make - run: make - - name: Archive compiled binary - uses: actions/upload-artifact@v3 - with: - name: xschem - path: src/xschem