We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4cbf7b commit 288455cCopy full SHA for 288455c
1 file changed
.github/workflows/ci.yml
@@ -89,15 +89,16 @@ jobs:
89
repository: alliedmodders/ambuild
90
path: ambuild
91
92
- - name: Setup Python
93
- uses: actions/setup-python@v6
94
- with:
95
- python-version: '3'
96
-
97
- - name: Install AMBuild
+ - name: Install AMBuild win
+ if: matrix.os == 'ubuntu-latest'
98
run: |
99
cd ambuild && python -m pip install . && cd ..
100
+ - name: Install AMBuild linux
+ run: |
+ cd ambuild && python setup.py install && cd ..
101
+
102
- name: Install Clang 16
103
if: matrix.os == 'ubuntu-latest'
104
0 commit comments