Skip to content

Commit

Permalink
Merge pull request #2 from patrickdappollonio/rewrite-to-rust
Browse files Browse the repository at this point in the history
Rewrite version 2.0 to Rust
  • Loading branch information
patrickdappollonio authored Dec 14, 2024
2 parents 0014415 + d432ae7 commit f2d8ade
Show file tree
Hide file tree
Showing 16 changed files with 1,115 additions and 598 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Release Rust Application

on:
release:
types: [created]

permissions:
contents: write

jobs:
release:
name: Release for ${{ matrix.target }}
strategy:
matrix:
include:
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
archive: linux-arm64
- target: aarch64-apple-darwin
os: macos-latest
archive: darwin-arm64
- target: x86_64-apple-darwin
os: macos-latest
archive: darwin-x86_64
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
archive: linux-x86_64
- target: x86_64-pc-windows-msvc
os: windows-latest
archive: windows-x86_64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- shell: bash
run: |
# Update the version in Cargo.toml
TAG_NAME="${{ github.event.release.tag_name }}"
TAG_NAME="${TAG_NAME#v}"
if [[ "${{ runner.os }}" == "macOS" ]]; then
sed -i"" -e "s/^version = .*/version = \"$TAG_NAME\"/" Cargo.toml
else
sed -i -e "s/^version = .*/version = \"$TAG_NAME\"/" Cargo.toml
fi
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: gc-rust
archive: $bin-$tag-${{ matrix.archive }}
target: ${{ matrix.target }}
tar: unix
zip: windows
token: ${{ secrets.GITHUB_TOKEN }}
21 changes: 21 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test Rust Application

on:
push:

jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

- name: Run tests
run: cargo test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
32 changes: 0 additions & 32 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit f2d8ade

Please sign in to comment.