We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c19ae95 + adc2198 commit 088c3e9Copy full SHA for 088c3e9
.github/workflows/pull-request-ci.yml
@@ -83,22 +83,27 @@ jobs:
83
strategy:
84
fail-fast: false
85
matrix:
86
- os: [ macOS-13 ]
+ os: [ ubuntu-latest ]
87
api: [ 30 ]
88
abi: [ x86_64 ]
89
tag: [ default ]
90
needs:
91
- env-job
92
steps:
93
+ - name: kvm support
94
+ run: |
95
+ egrep -c '(vmx|svm)' /proc/cpuinfo
96
+ id
97
+ sudo adduser $USER kvm
98
+ sudo chown -R $USER /dev/kvm
99
100
- uses: actions/checkout@v4
101
with:
102
fetch-depth: 0
103
submodules: true
104
- name: show envs
105
run: |
106
echo ${{ needs.env-job.outputs.modified-branch-name }}
- - name: prepare
- run: brew install exiftool imagemagick
107
- name: set up JDK 17
108
uses: actions/setup-java@v4
109
0 commit comments