aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ccpp.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ccpp.yml')
-rw-r--r--.github/workflows/ccpp.yml28
1 files changed, 0 insertions, 28 deletions
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml
deleted file mode 100644
index c9dbe3b..0000000
--- a/.github/workflows/ccpp.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-name: Project build and nightly release
-
-on:
- schedule:
- - cron: "0 2 * * 0"
- push:
- branches:
- - master
-
-jobs:
- build:
-
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v1
- - name: Install
- run: sudo apt-get update && sudo apt-get install -y build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libcloog-isl-dev libisl-0.18-dev curl nasm grub2 qemu qemu-kvm
- - name: Make
- run: make cross build
- - name: Release
- uses: softprops/action-gh-release@v1
- with:
- files: build/melvix.iso
- name: Melvix Nightly Release
- prerelease: 1
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}