mirror of
https://github.com/jfdelnero/HxCFloppyEmulator.git
synced 2026-07-27 19:56:23 +00:00
fix missing apt update
This commit is contained in:
@@ -17,14 +17,14 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@main
|
- uses: actions/checkout@main
|
||||||
- name: Build
|
- name: Build
|
||||||
run: sudo apt install -q -y libx11-dev libfreetype6 libfreetype6-dev libxft-dev libxft2 && cd build && make tests -j2
|
run: sudo apt update && sudo apt install -q -y libx11-dev libfreetype6 libfreetype6-dev libxft-dev libxft2 && cd build && make tests -j2
|
||||||
|
|
||||||
build-windows-x86:
|
build-windows-x86:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@main
|
- uses: actions/checkout@main
|
||||||
- name: Build
|
- name: Build
|
||||||
run: sudo apt install -q -y mingw-w64 && cd build && make TARGET=mingw32 -j2
|
run: sudo apt update && sudo apt install -q -y mingw-w64 && cd build && make TARGET=mingw32 -j2
|
||||||
- name: Package
|
- name: Package
|
||||||
run: cd build && ./windowscreatezip.sh _x86 HXCSOFT
|
run: cd build && ./windowscreatezip.sh _x86 HXCSOFT
|
||||||
- uses: actions/upload-artifact@main
|
- uses: actions/upload-artifact@main
|
||||||
@@ -37,7 +37,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@main
|
- uses: actions/checkout@main
|
||||||
- name: Build
|
- name: Build
|
||||||
run: sudo apt install -q -y mingw-w64 && cd build && make TARGET=mingw32 STANDALONEFSBROWSER_BUILD=1 -j2
|
run: sudo apt update && sudo apt install -q -y mingw-w64 && cd build && make TARGET=mingw32 STANDALONEFSBROWSER_BUILD=1 -j2
|
||||||
- name: Package
|
- name: Package
|
||||||
run: cd build && ./windowscreatezip.sh _x86 DOSDISKBROWSER
|
run: cd build && ./windowscreatezip.sh _x86 DOSDISKBROWSER
|
||||||
- uses: actions/upload-artifact@main
|
- uses: actions/upload-artifact@main
|
||||||
@@ -50,7 +50,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@main
|
- uses: actions/checkout@main
|
||||||
- name: Build
|
- name: Build
|
||||||
run: sudo apt install -q -y mingw-w64 && cd build && make TARGET=mingw64 -j2
|
run: sudo apt update && sudo apt install -q -y mingw-w64 && cd build && make TARGET=mingw64 -j2
|
||||||
- name: Package
|
- name: Package
|
||||||
run: cd build && ./windowscreatezip.sh _x64 HXCSOFT
|
run: cd build && ./windowscreatezip.sh _x64 HXCSOFT
|
||||||
- uses: actions/upload-artifact@main
|
- uses: actions/upload-artifact@main
|
||||||
|
|||||||
Reference in New Issue
Block a user