mirror of
https://github.com/xmrig/xmrig.git
synced 2025-04-22 22:48:10 +00:00
Fixed CI
This commit is contained in:
parent
5b98357b14
commit
672390ca81
1 changed files with 7 additions and 7 deletions
14
.github/workflows/deploy.yml
vendored
14
.github/workflows/deploy.yml
vendored
|
@ -108,13 +108,13 @@ jobs:
|
|||
path: macos_build_intel.tar.gz
|
||||
|
||||
build_lin_ub12:
|
||||
name: Build Ubuntu 14.04 artifacts
|
||||
name: Build Ubuntu 13.04 artifacts
|
||||
runs-on: ubuntu-latest
|
||||
container: ubuntu:14.04
|
||||
container: ubuntu:13.04
|
||||
steps:
|
||||
- name: Prepare build tools
|
||||
run: |
|
||||
#sed -i -r 's/(archive|security).ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list
|
||||
sed -i -r 's/(archive|security).ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list
|
||||
cat /etc/apt/sources.list
|
||||
apt-get update
|
||||
apt-get install -y python-software-properties
|
||||
|
@ -129,14 +129,14 @@ jobs:
|
|||
run: |
|
||||
git clone https://github.com/MoneroOcean/xmrig.git .
|
||||
git checkout $GITHUB_REF_NAME
|
||||
- name: Build project on Ubuntu 14.04
|
||||
- name: Build project on Ubuntu 13.04
|
||||
run: |
|
||||
cd scripts && ./build_deps.sh && cd ..
|
||||
/opt/cmake-3.27.9-linux-x86_64/bin/cmake . -DXMRIG_DEPS=scripts/deps
|
||||
make -j$(nproc)
|
||||
cp src/config.json .
|
||||
tar cfz ubuntu12_build.tar.gz xmrig config.json
|
||||
- name: Upload Ubuntu 14.04 build artifacts
|
||||
- name: Upload Ubuntu 13.04 build artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ubuntu12_build
|
||||
|
@ -176,7 +176,7 @@ jobs:
|
|||
uses: actions/download-artifact@v1
|
||||
with:
|
||||
name: macos_build_intel
|
||||
- name: Download Ubuntu 14.04 build artifacts
|
||||
- name: Download Ubuntu 13.04 build artifacts
|
||||
uses: actions/download-artifact@v1
|
||||
with:
|
||||
name: ubuntu12_build
|
||||
|
@ -216,7 +216,7 @@ jobs:
|
|||
asset_path: macos_build_intel/macos_build_intel.tar.gz
|
||||
asset_name: xmrig-${{steps.version.outputs.VERSION}}-mac-intel.tar.gz
|
||||
asset_content_type: application/zip
|
||||
- name: Upload Ubuntu 14.04 build release asset
|
||||
- name: Upload Ubuntu 13.04 build release asset
|
||||
uses: actions/upload-release-asset@v1.0.1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
Loading…
Reference in a new issue