From 3a3f2295c280079365fe13e9af6ce11416a0ad76 Mon Sep 17 00:00:00 2001 From: Martin Date: Fri, 2 Feb 2024 11:04:09 +0100 Subject: [PATCH] test build --- .cargo/config | 4 +++ .github/workflows/build.yml | 53 +++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 .cargo/config create mode 100644 .github/workflows/build.yml diff --git a/.cargo/config b/.cargo/config new file mode 100644 index 0000000..98b5c37 --- /dev/null +++ b/.cargo/config @@ -0,0 +1,4 @@ +[target.x86_64-pc-windows-msvc] +rustflags = ["-Ctarget-feature=+crt-static"] +[target.i686-pc-windows-msvc] +rustflags = ["-Ctarget-feature=+crt-static"] diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..33b588c --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,53 @@ +on: + release: + types: [created] + push: + + +jobs: + release: + name: release ${{ matrix.target }} (with non-required env) + runs-on: ubuntu-latest + if: github.event_name == 'release' + strategy: + fail-fast: false + matrix: + include: + - target: x86_64-pc-windows-gnu + archive: zip + - target: x86_64-unknown-linux-musl + archive: tar.gz + - target: x86_64-apple-darwin + archive: zip + - target: wasm32-wasi + archive: zip tar.gz + steps: + - uses: actions/checkout@master + - name: Compile and release + uses: rust-build/rust-build.action@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + RUSTTARGET: ${{ matrix.target }} + EXTRA_FILES: "README.md" + SRC_DIR: "hello" + ARCHIVE_TYPES: ${{ matrix.archive }} + PRE_BUILD: "pre_build.sh" + POST_BUILD: "test/post_build.sh" + MINIFY: "yes" + release_without_not_required: + name: release ${{ matrix.target }} + runs-on: ubuntu-latest + strategy: + fail-fast: true + matrix: + target: [x86_64-unknown-linux-musl] + steps: + - uses: actions/checkout@master + - name: Compile and release + uses: rust-build/rust-build.action@master + with: + RUSTTARGET: ${{ matrix.target }} + UPLOAD_MODE: none + - name: Checkout output + run: ls -laR