Update GitHub workflow
This commit is contained in:
parent
608f824155
commit
f53aa70d3d
42
.github/workflows/fox32-run-cputest.yml
vendored
42
.github/workflows/fox32-run-cputest.yml
vendored
|
@ -1,42 +0,0 @@
|
||||||
on: [push]
|
|
||||||
|
|
||||||
name: run cputest
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
fox32-run-cputest:
|
|
||||||
name: Build and test
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Download latest fox32rom artifact
|
|
||||||
uses: dawidd6/action-download-artifact@v2
|
|
||||||
with:
|
|
||||||
repo: fox32-arch/fox32rom
|
|
||||||
workflow: fox32rom-unstable.yml
|
|
||||||
workflow_conclusion: success
|
|
||||||
|
|
||||||
- name: Download latest cputest artifact
|
|
||||||
uses: dawidd6/action-download-artifact@v2
|
|
||||||
with:
|
|
||||||
repo: fox32-arch/demos
|
|
||||||
workflow: demos-unstable.yml
|
|
||||||
workflow_conclusion: success
|
|
||||||
|
|
||||||
- name: Move fox32.rom into the root folder
|
|
||||||
run: |
|
|
||||||
mv fox32.rom/ download/
|
|
||||||
cp download/fox32.rom ./fox32.rom
|
|
||||||
|
|
||||||
- name: Install libsdl2-dev and vim
|
|
||||||
run: |
|
|
||||||
sudo apt update
|
|
||||||
sudo apt install -y libsdl2-dev vim
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
run: make
|
|
||||||
|
|
||||||
- name: Test
|
|
||||||
run: |
|
|
||||||
./fox32 --headless --rom cputest/cputest.bin | tee cputest.log
|
|
||||||
grep 'All tests passed' cputest.log
|
|
23
.github/workflows/fox32-unstable-linux.yml
vendored
23
.github/workflows/fox32-unstable-linux.yml
vendored
|
@ -12,26 +12,15 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
- uses: cachix/install-nix-action@v22
|
||||||
- name: Download latest fox32rom artifact
|
|
||||||
uses: dawidd6/action-download-artifact@v2
|
|
||||||
with:
|
with:
|
||||||
repo: fox32-arch/fox32rom
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
workflow: fox32rom-unstable.yml
|
|
||||||
workflow_conclusion: success
|
|
||||||
|
|
||||||
- name: Move fox32.rom into the root folder
|
- name: Build fox32
|
||||||
run: |
|
run: nix build -L .#fox32
|
||||||
mv fox32.rom/ download/
|
|
||||||
cp download/fox32.rom ./fox32.rom
|
|
||||||
|
|
||||||
- name: Install libsdl2-dev and vim
|
- name: Patch
|
||||||
run: |
|
run: nix run nixpkgs#patchelf -- result/bin/fox32 --set-interpreter /lib64/ld-linux-x86-64.so.2 --output fox32
|
||||||
sudo apt update
|
|
||||||
sudo apt install -y libsdl2-dev vim
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
run: make
|
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
|
|
Loading…
Reference in New Issue
Block a user