Skip to content

Commit

Permalink
Added GitHub action to build
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbond7 committed Dec 18, 2023
1 parent c2a96ab commit 3403cfc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build-host.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: acpp11-401 exercises

on: [push]

jobs:
build:
runs-on: ubuntu-latest
environment: build
container:
image: feabhas/ubuntu-projects:latest
options: -u 1001
steps:
- name: checkout
uses: actions/checkout@v4
with:
sparse-checkout: solutions
fetch-depth: 1
- name: build solutions
run: |
cp -r /home/feabhas/projects/cmake-host .
cd cmake-host
bash ./build-one.sh --all

0 comments on commit 3403cfc

Please sign in to comment.