mirror of
https://github.com/renbaoshuo/s2oj-gcc.git
synced 2024-11-23 19:48:44 +00:00
refactor: use github actions to build gcc
This commit is contained in:
parent
883a251310
commit
53cd2cff86
24
.drone.yml
24
.drone.yml
@ -1,24 +0,0 @@
|
|||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: Build
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- custom
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Build & Upload
|
|
||||||
image: ubuntu:22.04
|
|
||||||
commands:
|
|
||||||
- sed -i 's@//.*archive.ubuntu.com@//mirror-cdn.xtom.com@g' /etc/apt/sources.list &&
|
|
||||||
sed -i 's@//security.ubuntu.com@//mirror-cdn.xtom.com@g' /etc/apt/sources.list
|
|
||||||
- apt update &&
|
|
||||||
apt install -y curl flex bzip2 git make gcc g++ libgmp-dev libmpfr-dev libmpc-dev gcc-multilib
|
|
||||||
- bash build.sh
|
|
||||||
environment:
|
|
||||||
GITEA_ENDPOINT: https://git.m.ac
|
|
||||||
GITEA_USER: baoshuo
|
|
||||||
GITEA_TOKEN:
|
|
||||||
from_secret: GITEA_TOKEN
|
|
26
.github/workflows/build.yml
vendored
Normal file
26
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: Build & Publish
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: |
|
||||||
|
apt update &&
|
||||||
|
apt install -y curl flex bzip2 git make gcc g++ libgmp-dev libmpfr-dev libmpc-dev gcc-multilib
|
||||||
|
- name: Build
|
||||||
|
run: bash build.sh
|
||||||
|
- name: Upload
|
||||||
|
run: |
|
||||||
|
curl --user "${GITEA_USER}:${GITEA_TOKEN}" \
|
||||||
|
--upload-file "s2oj-gcc-$(cat GCC_VERSION)~1baoshuo1.deb" \
|
||||||
|
${GITEA_ENDPOINT}/api/packages/${GITEA_USER}/debian/pool/all/main/upload
|
||||||
|
env:
|
||||||
|
GITEA_ENDPOINT: https://git.m.ac
|
||||||
|
GITEA_USER: baoshuo
|
||||||
|
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
1
GCC_VERSION
Normal file
1
GCC_VERSION
Normal file
@ -0,0 +1 @@
|
|||||||
|
13.2.0
|
16
build.sh
16
build.sh
@ -1,9 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
CURRENT_DIR=$(pwd)
|
CURRENT_DIR=$(pwd)
|
||||||
GCC_VERSION="13.2.0"
|
GCC_VERSION=$(cat GCC_VERSION)
|
||||||
# GCC_GIT="git://gcc.gnu.org/git/gcc.git"
|
GCC_GIT="git://gcc.gnu.org/git/gcc.git"
|
||||||
GCC_GIT="https://git.m.ac/mirrors/gcc.git"
|
|
||||||
GCC_SRC="${CURRENT_DIR}/../gcc"
|
GCC_SRC="${CURRENT_DIR}/../gcc"
|
||||||
|
|
||||||
build_cd() {
|
build_cd() {
|
||||||
@ -11,6 +10,11 @@ build_cd() {
|
|||||||
echo "****** Now at: $(pwd)"
|
echo "****** Now at: $(pwd)"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if [ -z "$GCC_VERSION" ]; then
|
||||||
|
echo "GCC_VERSION not set!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# Clone GCC
|
# Clone GCC
|
||||||
echo "===> Cloning GCC..."
|
echo "===> Cloning GCC..."
|
||||||
git clone -b "releases/gcc-$GCC_VERSION" --depth 1 "${GCC_GIT}" "${GCC_SRC}"
|
git clone -b "releases/gcc-$GCC_VERSION" --depth 1 "${GCC_GIT}" "${GCC_SRC}"
|
||||||
@ -59,9 +63,3 @@ Description: GCC $GCC_VERSION for S2OJ
|
|||||||
EOF
|
EOF
|
||||||
build_cd ${CURRENT_DIR}
|
build_cd ${CURRENT_DIR}
|
||||||
dpkg-deb --build deb s2oj-gcc-$GCC_VERSION~1baoshuo1.deb
|
dpkg-deb --build deb s2oj-gcc-$GCC_VERSION~1baoshuo1.deb
|
||||||
|
|
||||||
# Upload package to Gitea
|
|
||||||
echo "===> Uploading package to Gitea..."
|
|
||||||
curl --user "${GITEA_USER}:${GITEA_TOKEN}" \
|
|
||||||
--upload-file s2oj-gcc-$GCC_VERSION~1baoshuo1.deb \
|
|
||||||
${GITEA_ENDPOINT}/api/packages/${GITEA_USER}/debian/pool/all/main/upload
|
|
||||||
|
Loading…
Reference in New Issue
Block a user