-
Notifications
You must be signed in to change notification settings - Fork 3
51 lines (41 loc) · 1.66 KB
/
build_master.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Build the package and run tests, using the latest trifinger_user Apptainer
# image.
# The Apptainer image has a full ROBOT_FINGERS workspace installed, so all
# dependencies are there and only the checked package needs to be build, not the
# whole workspace.
#
# Note: The Apptainer image only gets automatically rebuild, if something in the
# image definition changes, not when other packages are changed. So to avoid
# that the workspace in the container gets outdated, manual builds need to be
# triggered regularly.
name: Build and Test
on:
push:
branches:
- master
jobs:
build_and_test:
runs-on: ubuntu-20.04
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.doc.outputs.page_url }}
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Setup Apptainer
uses: open-dynamic-robot-initiative/trifinger-build-action/setup_apptainer@v2
with:
# use the "robot" image, which contains Pylon
uri: oras://ghcr.io/open-dynamic-robot-initiative/trifinger_singularity/trifinger_robot:latest
- name: Build
uses: open-dynamic-robot-initiative/trifinger-build-action/build@v2
- name: Documentation
id: doc
uses: open-dynamic-robot-initiative/trifinger-build-action/build_and_deploy_docs@v2
- name: Tests
uses: open-dynamic-robot-initiative/trifinger-build-action/run_tests@v2