Delete .github/workflows directory
This commit is contained in:
parent
0ad39c833d
commit
fcd7b96de7
|
|
@ -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)"
|
||||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
Loading…
Reference in New Issue