Compare commits

..

No commits in common. "96e1bf08086ebf3eb3a9ee0fb9283534668ba4df" and "758b9c9cb73c2d9fde3f95bb721b21edde512a7d" have entirely different histories.

View File

@ -3,29 +3,27 @@ on:
push: push:
branches: branches:
- main - main
- github-actions
name: fox32asm Unstable - Linux name: fox32asm Unstable - Linux
jobs: jobs:
fox32asm-nix: fox32asm-unstable-linux:
name: Build name: Build
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build - name: Build
run: nix build -L .#fox32asm run: cargo build --release
- name: Patch - name: Upload artifact
run: nix run nixpkgs#patchelf -- result/bin/fox32asm --set-interpreter /lib64/ld-linux-x86-64.so.2 --output fox32asm
- name: Upload artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: fox32asm name: fox32asm
path: fox32asm path: target/release/fox32asm