-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (40 loc) · 1.27 KB
/
github-actions.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
name: assignment-test
on:
push:
tags-ignore:
- '*'
branches:
- '*'
jobs:
full-test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
with:
clean: false
submodules: 'recursive'
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Run build
timeout-minutes: 600
run: |
docker run --rm \
-v $SSH_AUTH_SOCK:/ssh-agent -e SSH_AUTH_SOCK=/ssh-agent \
-e GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no" \
-v ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} \
cuaesd/aesd-autotest:24-assignment6-yocto \
--workdir=${GITHUB_WORKSPACE} \
./build.sh
- name: Cleanup
if: always()
run: |
ssh-add -D
- name: Run full test
timeout-minutes: 15
run: |
docker run --rm \
-v ${GITHUB_WORKSPACE}:${GITHUB_WORKSPACE} \
cuaesd/aesd-autotest:assignment6-yocto \
--workdir=${GITHUB_WORKSPACE} \
./full-test.sh