File tree Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Original file line number Diff line number Diff line change 10
10
- ' !docs/**'
11
11
12
12
env :
13
- GITHUB_AUTH_TOKEN : ${{ secrets.WOLFGANG_REPO_PACKAGE_READ }}
14
13
GOPRIVATE : " github.com/apigear-io/*"
15
14
GH_ACCESS_TOKEN : ${{ secrets.APIGEAR_REPOS }}
16
15
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
41
40
- name : Install clang-format-12
42
41
run : sudo apt-get install --no-install-recommends -y clang-format-12 && sudo mv /usr/bin/clang-format-12 /usr/bin/clang-format
43
42
- run : go run main.go testStyle
43
+
44
+ test-compile :
45
+ runs-on : ubuntu-latest
46
+ needs : generate
47
+ strategy :
48
+ matrix :
49
+ UE_VERSION :
50
+ - dev-slim-4.27
51
+ - dev-slim-5.2.1
52
+ container :
53
+ image : ghcr.io/epicgames/unreal-engine:${{ matrix.UE_VERSION }}
54
+ credentials :
55
+ username : ${{ github.actor }}
56
+ password : ${{ secrets.APIGEAR_REPOS }}
57
+ volumes :
58
+ - ${{ github.workspace }}:/project
59
+ steps :
60
+ - name : Checkout
61
+ uses : actions/checkout@v4
62
+ - name : test
63
+ run : |
64
+ pwd
65
+ ls -la
66
+ - name : build plugins
67
+ run : |
68
+ sh buildPlugins.sh
You can’t perform that action at this time.
0 commit comments