update ci #10
Workflow file for this run
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: ci | ||
on: | ||
push: | ||
branches: | ||
- rust_rewrite | ||
env: | ||
RUSTFLAGS: "-Dwarnings" | ||
RUST_BACKTRACE: 1 | ||
jobs: | ||
build-rust-linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: . "$HOME/.cargo/env" | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
workspaces: "expander_compiler -> expander_compiler/target" | ||
- name: Build | ||
run: cargo build --release --manifest-path=expander_compiler/ec_go_lib/Cargo.toml | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: build-ubuntu-latest | ||
path: expander_compiler/target/release/libec_go_lib.* | ||
build-rust-macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
workspaces: "expander_compiler -> expander_compiler/target" | ||
- name: Build | ||
run: cargo build --release --manifest-path=expander_compiler/ec_go_lib/Cargo.toml | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: build-macos-latest | ||
path: expander_compiler/target/release/libec_go_lib.* | ||
upload-rust: | ||
needs: build-rust | ||
Check failure on line 46 in .github/workflows/ci.yml GitHub Actions / ciInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
path: ./artifacts | ||
pattern: build-* | ||
merge-multiple: true | ||
- name: Push built libs to another branch | ||
run: | | ||
git config --global user.name "github-actions[bot]" | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git checkout --orphan rust-built-libs | ||
cp artifacts/libec_go_lib.* ./ | ||
rm ./libec_go_lib.d | ||
git rm --cached -r . | ||
git add ./libec_go_lib.* -f | ||
git commit -m "Add built libs" | ||
git push -f --set-upstream origin rust-built-libs | ||
test-rust: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
steps: | ||
- uses: styfle/[email protected] | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
workspaces: "expander_compiler -> expander_compiler/target" | ||
- run: cargo test --manifest-path=expander_compiler/Cargo.toml | ||
test-go: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
needs: build-rust | ||
steps: | ||
- uses: styfle/[email protected] | ||
- uses: actions/checkout@v4 | ||
- name: Setup Go 1.21.x | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.21.x' | ||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
path: ./artifacts | ||
pattern: build-${{ matrix.os }} | ||
merge-multiple: true | ||
- run: | | ||
cp artifacts/libec_go_lib.* ecgo/compile/wrapper/ | ||
cd ecgo | ||
go test ./test/ |