From dd5a2c8315a7c5e394746dba72f772e39ce833fb Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Tue, 12 Oct 2021 20:27:25 +0200 Subject: [PATCH] get rid of automated CI builds for now the tests that actually run the compiler + assember don't work there (for now) --- .github/workflows/gradle.yml | 32 -------------------------------- .travis.yml | 11 ----------- README.md | 2 -- 3 files changed, 45 deletions(-) delete mode 100644 .github/workflows/gradle.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml deleted file mode 100644 index 2c326de4a..000000000 --- a/.github/workflows/gradle.yml +++ /dev/null @@ -1,32 +0,0 @@ -# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time -# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle - -name: CI with Gradle - -on: - push: - branches: [ master, v7.1 ] - pull_request: - branches: [ master, v7.1 ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 11 - uses: actions/setup-java@v2 - with: - java-version: '11' - distribution: 'adopt' - cache: gradle - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - name: Build with Gradle - run: ./gradlew build diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 257020cb5..000000000 --- a/.travis.yml +++ /dev/null @@ -1,11 +0,0 @@ -language: java -sudo: false -# jdk: openjdk8 -# dist: xenial - -before_install: - - chmod +x ./gradlew - -script: - - ./gradlew test - diff --git a/README.md b/README.md index d51b1cfc5..2259da2a8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ -[![saythanks](https://img.shields.io/badge/say-thanks-ff69b4.svg)](https://saythanks.io/to/irmen) -[![Build Status](https://travis-ci.org/irmen/prog8.svg?branch=master)](https://travis-ci.org/irmen/prog8) [![Documentation](https://readthedocs.org/projects/prog8/badge/?version=latest)](https://prog8.readthedocs.io/) Prog8 - Structured Programming Language for 8-bit 6502/65c02 microprocessors