Skip to content

Commit

Permalink
Move to GitHub Actions from CircleCI (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
cahirwpz authored Apr 18, 2022
2 parents 460082a + 05bc432 commit 7e934b2
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 31 deletions.
1 change: 0 additions & 1 deletion .circleci/DATESTAMP

This file was deleted.

30 changes: 0 additions & 30 deletions .circleci/config.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Demoscene Toolchain

on: [push]

jobs:
build:
runs-on: ubuntu-latest
container: cahirwpz/demoscene-toolchain:latest

steps:
- uses: actions/checkout@v3
with:
submodules: true

- name: Download archives
run: ./toolchain-m68k --quiet download

- name: Build toolchain
run: ./toolchain-m68k --quiet build --prefix=/usr/local

- name: Archive toolchain
run: tar czf demoscene-toolchain.tar.gz /usr/local

- name: Upload toolchain
uses: actions/upload-artifact@v3
with:
name: demoscene-toolchain
path: demoscene-toolchain.tar.gz

0 comments on commit 7e934b2

Please sign in to comment.