Merge pull request #103 from dbalsom/version_0_2_0_rc0 #25
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
name: Linux | |
on: | |
push: | |
branches: | |
- version_0_2_0 | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test: | |
name: martypc | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: >- | |
sudo apt update && sudo apt install | |
libasound2-dev | |
libudev-dev | |
- name: Cargo build | |
run: cargo build --profile release-lto --features ega | |
- name: Copy files into install dir | |
run: cp LICENSE README.md CHANGELOG.md CREDITS.md target/release-lto/martypc install | |
- name: Rename install directory | |
run: mv install martypc | |
- name: Create artifact directory | |
run: mkdir artifacts | |
# GitHub zips all artifacts, losing file permissions. | |
# We'll need to tar the directory in order to | |
# preserve the file permissions | |
- name: Create artifact from install directory | |
run: tar cvf artifacts/martypc.tar martypc | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'martypc-linux-gha${{ github.run_number }}' | |
path: artifacts/martypc.tar |