Configure c2a-core crate MSRV & set to 1.78 #1854
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 | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
user: | |
- mobc | |
- subobc | |
uses: arkedge/workflows-c2a/.github/workflows/build.yml@v5.4.0 | |
with: | |
c2a_dir: examples/${{ matrix.user }} | |
c2a_custom_setup: | | |
cd ../.. | |
pwd | |
ls -l | |
if [ $RUNNER_OS = 'Windows' ]; then | |
cmd "/C setup.bat" | |
else | |
./setup.sh | |
fi | |
build_msvc: true | |
build_as_cxx: true |