diff options
author | Jeff Armstrong <jeff@approximatrix.com> | 2020-04-09 17:18:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 17:18:33 -0400 |
commit | 3822f621fd6814971515551d1c8a81ac7fd49e72 (patch) | |
tree | 7e9b01828a931e482aadd0609a7841c0089ec7b1 | |
parent | 7ed2759953c6a49470d5bbf19429b4480f9f9bd8 (diff) | |
parent | 0f42d88b557135037918348f02befd8ebc02da20 (diff) | |
download | gemworm-3822f621fd6814971515551d1c8a81ac7fd49e72.zip gemworm-3822f621fd6814971515551d1c8a81ac7fd49e72.tar.gz |
Merge pull request #1 from ArmstrongJ/continuous-integration
Introducing CI builds
-rw-r--r-- | main.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/main.yml b/main.yml new file mode 100644 index 0000000..2a4326c --- /dev/null +++ b/main.yml @@ -0,0 +1,32 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the master branch +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-18.04 + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + - name: Install PPA + run: sudo add-apt-repository ppa:vriviere/ppa + + - name: Install MiNT Cross-tools + run: sudo apt-get install binutils-m68k-atari-mint gcc-m68k-atari-mint mintbin-m68k-atari-mint mintlib-m68k-atari-mint gemlib-m68k-atari-mint make + + - uses: actions/checkout@v2 + + - name: Build Worm + run: make -f makefile.gnu CC=m68k-atari-mint-gcc clean all + |