Overview
Comment: | GitHub Actions: Pin NDS to last working container |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
eda17ffcbdd48c9bc73ae35cac9ea27d |
User & Date: | js on 2024-11-12 21:49:47 |
Other Links: | manifest | tags |
Context
2024-11-13
| ||
00:27 | GitHub Actions: Pin NDS to last working container Leaf check-in: 6c4d17f2f6 user: js tags: 1.2 | |
00:01 | Fix compiling on Haiku r1beta5 check-in: b585f68973 user: js tags: trunk | |
2024-11-12
| ||
21:49 | GitHub Actions: Pin NDS to last working container check-in: eda17ffcbd user: js tags: trunk | |
00:29 | Increase ObjFWTLS library version check-in: 8917ca0492 user: js tags: trunk | |
Changes
Modified .github/workflows/nintendo-ds.yml from [6b553d5781] to [16b1656c2b].
︙ | ︙ | |||
11 12 13 14 15 16 17 | run: ./autogen.sh - name: configure run: | docker run \ -e DEVKITPRO=/opt/devkitpro \ -e PATH="/opt/devkitpro/devkitARM/bin:$PATH" \ -v "$PWD:/objfw" \ | | | | | 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 | run: ./autogen.sh - name: configure run: | docker run \ -e DEVKITPRO=/opt/devkitpro \ -e PATH="/opt/devkitpro/devkitARM/bin:$PATH" \ -v "$PWD:/objfw" \ devkitpro/devkitarm:20241104 \ sh -c 'cd /objfw && ./configure --host=arm-none-eabi --with-nds' - name: make run: | docker run \ -e DEVKITPRO=/opt/devkitpro \ -e PATH="/opt/devkitpro/devkitARM/bin:$PATH" \ -v "$PWD:/objfw" \ devkitpro/devkitarm:20241104 \ sh -c "cd /objfw && make -j$(nproc)" - name: make install run: | docker run \ -e DEVKITPRO=/opt/devkitpro \ -e PATH="/opt/devkitpro/devkitARM/bin:$PATH" \ -v "$PWD:/objfw" \ devkitpro/devkitarm:20241104 \ sh -c "cd /objfw && make install" |