This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
bump ev3dev-cpp-template-wrapper version and update README.md #38
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: compile-test | |
on: [pull_request] | |
jobs: | |
compile-inside-container: | |
runs-on: ubuntu-latest | |
env: | |
GIT_DISCOVERY_ACROSS_FILESYSTEM: 1 | |
container: | |
image: eisverygoodletter/debian-stretch-cross:latest | |
options: --user root -e GIT_DISCOVERY_ACROSS_FILESYSTEM=1 | |
steps: | |
- name: install git | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y git | |
- uses: actions/checkout@v3 | |
with: | |
path: ./ | |
- uses: actions/checkout@v3 | |
with: | |
repository: rshs-robotics-club/ev3dev-cpp-template-wrapper | |
path: ./ev3dev-cpp-template-wrapper | |
- name: compile it | |
run: | | |
sudo chmod +x ./scripts/runWithinContainer.sh | |
sudo bash ./scripts/runWithinContainer.sh -w | |
shell: bash |