explicit resolver for workspace.toml to avoid Cargo warnings #735
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: Build sample material | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install tools | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: [email protected],[email protected] | |
- name: Add mdslides | |
run: | | |
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/ferrous-systems/mdslides/releases/download/v0.4.0/mdslides-installer.sh | sh | |
- name: Add Rust Targets | |
run: | | |
rustup target add thumbv7em-none-eabihf | |
rustup target add aarch64-unknown-none | |
# NB armv8r-unknown-none-eabihf is not yet available so we build core from source with nightly | |
rustup toolchain add nightly | |
rustup component add rust-src --toolchain=nightly | |
- name: Add C tools | |
run: | | |
sudo apt-get -y update | |
sudo apt-get -y install binutils-aarch64-linux-gnu gcc-aarch64-linux-gnu binutils-arm-none-eabi gcc-arm-none-eabi | |
- name: Find slug name | |
run: | | |
slug=$(./describe.sh "${GITHUB_REF}") | |
echo "Building with slug '${slug}'" | |
echo "slug=${slug}" >> "${GITHUB_ENV}" | |
- name: Build book-and-slides | |
run: | | |
cd ./training-slides && ./build.sh | |
- name: Build example code | |
run: | | |
cd ./example-code && ./build.sh | |
- name: Assemble Artifacts | |
run: | | |
echo "Making ./rust-training-${{ env.slug }}..." | |
mkdir -p ./rust-training-${{ env.slug }} | |
mv ./training-slides/slides ./rust-training-${{ env.slug }}/training-slides-presentation | |
mv ./training-slides/book ./rust-training-${{ env.slug }}/training-slides-book | |
cp -r ./example-code ./rust-training-${{ env.slug }} | |
echo "Compressing ./rust-training-${{ env.slug }}.zip..." | |
zip -r ./rust-training-${{ env.slug }}.zip ./rust-training-${{ env.slug }} | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
if: ${{success()}} | |
with: | |
name: Artifacts | |
if-no-files-found: error | |
path: | | |
./rust-training-*/ | |
- name: Create and Upload Release | |
if: github.event_name == 'push' && startswith(github.ref, 'refs/tags/') | |
id: create_release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: ./rust-training-${{ env.slug }}.zip |