forked from dyninst/dyninst
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 903 Bytes
/
test-dyninst.yaml
File metadata and controls
39 lines (32 loc) · 903 Bytes
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
name: Test Dyninst
on:
pull_request: []
push:
branches:
- master
jobs:
build:
permissions:
packages: read
strategy:
fail-fast: false
matrix:
# Testing containers named by ubuntu version for now
ubuntu: ["20.04"]
runs-on: ubuntu-latest
name: Build
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Make Space For Build
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
- name: Set Organization Name for Packages Registry
env:
org: ${{ github.event.repository.owner.login }}
run: echo "org=${org}" >> $GITHUB_ENV
- name: Build Test Container
run: |
cd docker/
docker build -f Dockerfile.test --build-arg dyninst_base=ghcr.io/${org}/dyninst-ubuntu-${{ matrix.ubuntu }}:latest -t dyninst-test ../