gupaxx/.github/workflows/ci.yml

94 lines
2.8 KiB
YAML
Raw Normal View History

2023-05-30 14:30:22 +00:00
name: CI
on:
push:
2024-06-07 11:55:14 +00:00
branches: [ "main", "dev" ]
2023-05-30 14:30:22 +00:00
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: "full"
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-12, ubuntu-latest]
2023-05-30 14:30:22 +00:00
steps:
- name: Checkout
2024-04-08 11:18:53 +00:00
uses: actions/checkout@v4
2023-05-30 14:30:22 +00:00
with:
submodules: recursive
- name: Cache
2024-04-08 11:18:53 +00:00
uses: actions/cache@v4
2023-05-30 14:30:22 +00:00
with:
path: |
~/.cargo
target
key: ${{ matrix.os }}
2023-05-30 14:30:22 +00:00
- name: Install dependencies
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt update
2024-04-08 11:18:53 +00:00
sudo apt install -y libgtk-3-dev mingw-w64
rustup target install x86_64-pc-windows-gnu
2023-06-04 14:38:12 +00:00
elif [ "$RUNNER_OS" == "macOS" ]; then
cargo install cargo-bundle
rustup target install aarch64-apple-darwin
2023-05-30 14:30:22 +00:00
fi
shell: bash
- name: Build
2023-06-04 14:38:12 +00:00
run: |
if [ "$RUNNER_OS" == "macOS" ]; then
2023-07-19 18:21:11 +00:00
cargo bundle --release
cargo bundle --release --target aarch64-apple-darwin
mv target/release/bundle/osx/Gupaxx.app Gupaxx-macos-x64.app
mv target/aarch64-apple-darwin/release/bundle/osx/Gupaxx.app Gupaxx-macos-arm64.app
cargo bundle --release --features=bundle
cargo bundle --release --target aarch64-apple-darwin --features=bundle
mv target/release/bundle/osx/Gupaxx.app Gupaxx-macos-x64.app_b
mv target/aarch64-apple-darwin/release/bundle/osx/Gupaxx.app Gupaxx-macos-arm64.app_b
2024-04-21 13:34:39 +00:00
tar -cf macos.tar Gupaxx-macos-arm64.app Gupaxx-macos-x64.app Gupaxx-macos-arm64.app_b Gupaxx-macos-x64.app_b
elif [ "$RUNNER_OS" == "Linux" ]; then
2023-07-19 18:21:11 +00:00
cargo build --release --target x86_64-unknown-linux-gnu
mv target/x86_64-unknown-linux-gnu/release/gupaxx .
cargo build --release --target x86_64-unknown-linux-gnu --features=bundle
mv target/x86_64-unknown-linux-gnu/release/gupaxx gupaxx_b
tar -cf linux.tar gupaxx gupaxx_b
2024-04-08 11:18:53 +00:00
cargo build --release --target x86_64-pc-windows-gnu
mv target/x86_64-pc-windows-gnu/release/gupaxx.exe .
cargo build --release --target x86_64-pc-windows-gnu --features=bundle
mv target/x86_64-pc-windows-gnu/release/gupaxx.exe gupaxx_b.exe
tar -cf windows.tar gupaxx.exe gupaxx_b.exe
2023-06-04 14:38:12 +00:00
fi
shell: bash
- name: Archive (Windows)
2024-04-08 11:18:53 +00:00
if: ${{ runner.os == 'Linux' }}
uses: actions/upload-artifact@v4
2023-06-04 14:38:12 +00:00
with:
name: windows
path: windows.tar
2023-06-04 21:37:31 +00:00
- name: Archive
if: ${{ runner.os == 'macOS' }}
2024-04-08 11:18:53 +00:00
uses: actions/upload-artifact@v4
2023-06-04 21:37:31 +00:00
with:
name: macos
path: macos.tar
- name: Archive (Linux)
if: ${{ runner.os == 'Linux' }}
2024-04-08 11:18:53 +00:00
uses: actions/upload-artifact@v4
with:
name: linux
path: linux.tar