mirror of
https://github.com/jcefmaven/jcefbuild.git
synced 2025-09-17 12:56:37 +08:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
eb01c1e80f | ||
|
a7cf94c435 | ||
|
a45b16d0ab | ||
|
c268c977ab | ||
|
fe2e83ae9e |
4
.github/workflows/build-all.yml
vendored
4
.github/workflows/build-all.yml
vendored
@ -206,7 +206,7 @@ jobs:
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: '8'
|
||||
distribution: 'adopt'
|
||||
distribution: 'corretto'
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.10.11'
|
||||
@ -276,7 +276,7 @@ jobs:
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: '8'
|
||||
distribution: 'adopt'
|
||||
distribution: 'corretto'
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.10.11'
|
||||
|
2
.github/workflows/build-linux-amd64.yml
vendored
2
.github/workflows/build-linux-amd64.yml
vendored
@ -31,7 +31,7 @@ jobs:
|
||||
./compile_linux.sh amd64 Release ${{ github.event.inputs.repo }} ${{ github.event.inputs.ref }}
|
||||
-
|
||||
name: Export artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: linux-amd64.tar.gz
|
||||
path: out/binary_distrib.tar.gz
|
||||
|
2
.github/workflows/build-linux-arm.yml
vendored
2
.github/workflows/build-linux-arm.yml
vendored
@ -31,7 +31,7 @@ jobs:
|
||||
./compile_linux.sh arm/v6 Release ${{ github.event.inputs.repo }} ${{ github.event.inputs.ref }}
|
||||
-
|
||||
name: Export artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: linux-arm.tar.gz
|
||||
path: out/binary_distrib.tar.gz
|
||||
|
2
.github/workflows/build-linux-arm64.yml
vendored
2
.github/workflows/build-linux-arm64.yml
vendored
@ -31,7 +31,7 @@ jobs:
|
||||
./compile_linux.sh arm64 Release ${{ github.event.inputs.repo }} ${{ github.event.inputs.ref }}
|
||||
-
|
||||
name: Export artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: linux-arm64.tar.gz
|
||||
path: out/binary_distrib.tar.gz
|
||||
|
4
.github/workflows/build-macosx-amd64.yml
vendored
4
.github/workflows/build-macosx-amd64.yml
vendored
@ -26,7 +26,7 @@ jobs:
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: '8'
|
||||
distribution: 'adopt'
|
||||
distribution: 'corretto'
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.10.11'
|
||||
@ -69,7 +69,7 @@ jobs:
|
||||
rm -rf "${HOME}/private_keys"
|
||||
-
|
||||
name: Export artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: macosx-amd64.tar.gz
|
||||
path: out/binary_distrib.tar.gz
|
||||
|
4
.github/workflows/build-macosx-arm64.yml
vendored
4
.github/workflows/build-macosx-arm64.yml
vendored
@ -26,7 +26,7 @@ jobs:
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: '8'
|
||||
distribution: 'adopt'
|
||||
distribution: 'corretto'
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.10.11'
|
||||
@ -69,7 +69,7 @@ jobs:
|
||||
rm -rf "${HOME}/private_keys"
|
||||
-
|
||||
name: Export artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: macosx-arm64.tar.gz
|
||||
path: out/binary_distrib.tar.gz
|
||||
|
2
.github/workflows/build-windows-amd64.yml
vendored
2
.github/workflows/build-windows-amd64.yml
vendored
@ -24,7 +24,7 @@ jobs:
|
||||
compile_windows.bat amd64 Release ${{ github.event.inputs.repo }} ${{ github.event.inputs.ref }}
|
||||
-
|
||||
name: Export artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: windows-amd64.tar.gz
|
||||
path: out/binary_distrib.tar.gz
|
||||
|
2
.github/workflows/build-windows-arm64.yml
vendored
2
.github/workflows/build-windows-arm64.yml
vendored
@ -24,7 +24,7 @@ jobs:
|
||||
compile_windows.bat arm64 Release ${{ github.event.inputs.repo }} ${{ github.event.inputs.ref }}
|
||||
-
|
||||
name: Export artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: windows-arm64.tar.gz
|
||||
path: out/binary_distrib.tar.gz
|
||||
|
2
.github/workflows/build-windows-i386.yml
vendored
2
.github/workflows/build-windows-i386.yml
vendored
@ -24,7 +24,7 @@ jobs:
|
||||
compile_windows.bat 386 Release ${{ github.event.inputs.repo }} ${{ github.event.inputs.ref }}
|
||||
-
|
||||
name: Export artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: windows-i386.tar.gz
|
||||
path: out/binary_distrib.tar.gz
|
||||
|
@ -3,7 +3,7 @@
|
||||
PYTHON=python3
|
||||
|
||||
brew install ninja
|
||||
"$PYTHON" -m pip install --ignore-installed six
|
||||
brew install six
|
||||
|
||||
"$PYTHON" -m pip list
|
||||
echo "from six.moves import configparser" | "$PYTHON" && echo "Success importing stuff from six moves python module"
|
||||
|
Loading…
Reference in New Issue
Block a user