-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jamie Cho
committed
Jan 31, 2021
1 parent
1f9a22c
commit 1483fb2
Showing
15 changed files
with
147 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Build | ||
|
||
on: | ||
- push | ||
|
||
jobs: | ||
main: | ||
runs-on: ubuntu-latest | ||
container: jamieleecho/coco-dev:0.31 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Build | ||
run: ./build-github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Bump and Tag Version | ||
|
||
on: [workflow_dispatch] | ||
|
||
jobs: | ||
bump: | ||
if: "!contains(github.event.head_commit.author.name, 'version-bumper')" | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Checkout action is required | ||
- uses: actions/checkout@v2 | ||
with: | ||
token: ${{ secrets.ADMIN_TOKEN }} | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: '12' | ||
- name: Bump Versions | ||
uses: michmich112/version-bumper@master | ||
with: | ||
options-file: './bump-info.json' | ||
github-token: ${{ secrets.ADMIN_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Make a New Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
main: | ||
runs-on: ubuntu-latest | ||
container: jamieleecho/coco-dev:0.31 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Build | ||
run: ./build-github | ||
- name: Get the tag | ||
run: | | ||
echo "RELEASE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | ||
echo "REPO_NAME=${GITHUB_REPOSITORY#*/}" >> $GITHUB_ENV | ||
- uses: ncipollo/release-action@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
artifacts: "./*/*.dsk" | ||
allowUpdates: true | ||
draft: true | ||
name: "${{ format('{0} {1}', env.REPO_NAME, env.RELEASE_TAG) }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,54 @@ | ||
# Prerequisites | ||
*.d | ||
|
||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
*.smod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
*.c10 | ||
|
||
# Compiler Detrius | ||
*.asm | ||
*.lst | ||
*.hex | ||
*.bin | ||
*.lst | ||
*.asm | ||
*.i | ||
cfg/* | ||
*.dsk | ||
!Ancient/* | ||
*~ | ||
#* | ||
.#* | ||
!Balloon/Balloonr.bin | ||
!Balloon/Ballon.bin | ||
!Balloon/Scene1.bin | ||
!Rick/Pix.bin | ||
!Rick/Guy.bin | ||
.*.swp | ||
.DS_Store | ||
*.o | ||
*.i | ||
*.s | ||
*.map | ||
*.link | ||
.bash* | ||
|
||
# Editor stuff | ||
*.swp | ||
*~ | ||
|
||
# Mac Junk | ||
.DS_Store | ||
|
||
# Executables | ||
minilisp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env sh | ||
|
||
export DOCKER_IMAGE=jamieleecho/coco-dev:0.12 | ||
export DOCKER_IMAGE=jamieleecho/coco-dev:0.31 | ||
docker run --rm --volume `pwd`/..:/home/coco-dev --workdir /home/coco-dev/Balloon $DOCKER_IMAGE make "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env sh | ||
|
||
export DOCKER_IMAGE=jamieleecho/coco-dev:0.12 | ||
export DOCKER_IMAGE=jamieleecho/coco-dev:0.31 | ||
docker run --rm --volume `pwd`:/home/coco-dev --workdir /home/coco-dev $DOCKER_IMAGE make "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env sh | ||
|
||
export DOCKER_IMAGE=jamieleecho/coco-dev:0.12 | ||
export DOCKER_IMAGE=jamieleecho/coco-dev:0.31 | ||
docker run --rm --volume `pwd`:/home/coco-dev --workdir /home/coco-dev $DOCKER_IMAGE make "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env sh | ||
|
||
export DOCKER_IMAGE=jamieleecho/coco-dev:0.12 | ||
export DOCKER_IMAGE=jamieleecho/coco-dev:0.31 | ||
docker run --rm --volume `pwd`:/home/coco-dev --workdir /home/coco-dev $DOCKER_IMAGE make "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env sh | ||
|
||
export DOCKER_IMAGE=jamieleecho/coco-dev:0.12 | ||
export DOCKER_IMAGE=jamieleecho/coco-dev:0.31 | ||
docker run --rm --volume `pwd`:/home/coco-dev --workdir /home/coco-dev $DOCKER_IMAGE make "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env sh | ||
|
||
export DOCKER_IMAGE=jamieleecho/coco-dev:0.12 | ||
export DOCKER_IMAGE=jamieleecho/coco-dev:0.31 | ||
docker run --rm --volume `pwd`:/home/coco-dev --workdir /home/coco-dev $DOCKER_IMAGE make "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env sh | ||
|
||
(cd Balloon && make "$@") | ||
(cd Bouncy && make "$@") | ||
(cd Demo && make "$@") | ||
(cd Primes && make "$@") | ||
(cd Rick && make "$@") | ||
(cd Splinter && make "$@") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"scheme": "custom", | ||
"schemeDefinition": "major.minor[.build][->patch]", | ||
"versionFile": "./package.json", | ||
"files": [{ | ||
"path": "Splinter/Splinter.c", | ||
"line": 11 | ||
}], | ||
"rules": [{ | ||
"trigger": "manual", | ||
"bump": "minor", | ||
"branch": "main", | ||
"reset": "build" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"name": "minilisp", | ||
"version": "1" | ||
} |