Browse Source
Merge pull request #152 from electrified/dev
Additionally build on macos
pull/173/head
Wayne Warthen
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
35 additions and
1 deletions
-
.github/workflows/commit.yml
|
|
@ -24,9 +24,43 @@ jobs: |
|
|
make |
|
|
make |
|
|
make clean |
|
|
make clean |
|
|
rm -rf .git* |
|
|
rm -rf .git* |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: List Output |
|
|
|
|
|
run: | |
|
|
|
|
|
cd Binary |
|
|
|
|
|
ls -l |
|
|
|
|
|
find -type f -exec md5sum '{}' \; |
|
|
|
|
|
|
|
|
- name: Upload Artifact |
|
|
- name: Upload Artifact |
|
|
uses: actions/upload-artifact@v1 |
|
|
uses: actions/upload-artifact@v1 |
|
|
with: |
|
|
with: |
|
|
name: RomWBW-${{env.GITHUB_REF_SLUG}}-${{env.GITHUB_SHA_SHORT}} |
|
|
name: RomWBW-${{env.GITHUB_REF_SLUG}}-${{env.GITHUB_SHA_SHORT}} |
|
|
|
|
|
path: . |
|
|
|
|
|
|
|
|
|
|
|
buildMacos: |
|
|
|
|
|
runs-on: macos-latest |
|
|
|
|
|
|
|
|
|
|
|
steps: |
|
|
|
|
|
- uses: actions/checkout@v2 |
|
|
|
|
|
|
|
|
|
|
|
- name: Get OS info |
|
|
|
|
|
run: | |
|
|
|
|
|
system_profiler SPSoftwareDataType |
|
|
|
|
|
|
|
|
|
|
|
- name: Build |
|
|
|
|
|
run: | |
|
|
|
|
|
make |
|
|
|
|
|
make clean |
|
|
|
|
|
rm -rf .git* |
|
|
|
|
|
|
|
|
|
|
|
- name: List Output |
|
|
|
|
|
run: | |
|
|
|
|
|
cd Binary |
|
|
|
|
|
ls -l |
|
|
|
|
|
find . -type f -exec md5 -r -- '{}' +; |
|
|
|
|
|
|
|
|
|
|
|
- name: Upload Artifact |
|
|
|
|
|
uses: actions/upload-artifact@v1 |
|
|
|
|
|
with: |
|
|
|
|
|
name: RomWBW-macOS |
|
|
path: . |
|
|
path: . |