Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update and rename autorebuilddb.yml to build-db.yaml #135

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions .github/workflows/autorebuilddb.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/build-db.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Automatic rebuild of the db
on: push

jobs:
run:
name: Rebuild db
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Build
run: ./mkall

- name: Configure GitHub Authentication
run: |
git config user.name "github-actions"
git config user.email "[email protected]"

- name: Commit and push changes
run: |
date > generated.txt
git add -A
git commit -m "Rebuilt Automatically DB"
git push
29 changes: 29 additions & 0 deletions .github/workflows/check-pkg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: OUR .ecmp file check CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]


jobs:
build:


runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Install libcurl
run: sudo apt-get install libcurl4-gnutls-dev -y

- name: configure libspm
run: |
git clone https://github.com/Soviet-Linux/libspm --recurse-submodules
make -C libspm all
make -C libspm test
sudo make -C libspm install
- name: Try .ecmp files
run: |
find -name "*.ecmp" -exec sh -c './libspm/bin/package-test "$1" || exit 255' _ {} \;
23 changes: 0 additions & 23 deletions .github/workflows/ourcustomci.yml

This file was deleted.

Loading