This commit is contained in:
acidicoala
2025-10-05 19:35:59 +05:00
parent f8de04812a
commit 62071a1489
3 changed files with 8 additions and 6 deletions

View File

@@ -10,7 +10,8 @@ jobs:
module: '[ "SmokeAPI" ] ' module: '[ "SmokeAPI" ] '
#language=json #language=json
os: '[ "Windows", "Linux" ]' os: '[ "Linux" ]'
# os: '[ "Windows", "Linux" ]'
#language=json #language=json
bitness: '[ 32, 64 ]' bitness: '[ 32, 64 ]'

View File

@@ -78,20 +78,21 @@ jobs:
# Container # Container
- os: Linux - os: Linux
container: ghcr.io/acidicoala/koalabox:master@sha256:6c71a8064ea02c6f20f2c456293af1947e6f78b784154c0b11cba10263b4501d container: ghcr.io/acidicoala/koalabox:master@sha256:7b2c80f23a1f5e777234a625db2ca1cc472d6fbccbf8e8da42f77052f2dcced1
env: env:
BUILD_DIR: ${{ github.workspace }}/build BUILD_DIR: ${{ github.workspace }}/build
steps: steps:
# Fix dubious ownership errors
- name: '✔️ Mark GitHub workspace as safe'
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: '🛠️ Check compiler versions' - name: '🛠️ Check compiler versions'
if: ${{ matrix.os == 'Linux' }} if: ${{ matrix.os == 'Linux' }}
run: | run: |
clang++ --version clang++ --version
g++ --version g++ --version
ls -la .
ls -la /__w/SmokeAPI/
- name: '📥 Check out repository code' - name: '📥 Check out repository code'
uses: actions/checkout@v5 uses: actions/checkout@v5