Skip to content

Commit

Permalink
[CBRD-24540] Use devtoolset9 (#4038)
Browse files Browse the repository at this point in the history
* devtoolset9

* test

* Use centos build on oracle linux
  • Loading branch information
sjkimxxx authored Jan 16, 2023
1 parent c38e1a4 commit 7f2ed49
Showing 1 changed file with 3 additions and 34 deletions.
37 changes: 3 additions & 34 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
name: Build
command: |
mkdir -p /tmp/build_logs
scl enable devtoolset-8 -- /entrypoint.sh build
scl enable devtoolset-9 -- /entrypoint.sh build
mv -f build.log /tmp/build_logs
- run:
name: Commits
Expand Down Expand Up @@ -84,36 +84,6 @@ jobs:
parallelism: 8
<<: *test_defaults

build_ol:
<<: *oraclelinux
environment:
MAKEFLAGS: -j 10
resource_class: large
steps:
- checkout
- run:
name: Submodules
command: |
git submodule sync
git submodule update --init
- run:
name: Build
command: |
mkdir -p /tmp/build_logs
scl enable devtoolset-8 -- /entrypoint.sh build
mv -f build.log /tmp/build_logs
- run:
name: Commits
command: |
mkdir -p /tmp/build_logs
git log | head -n 1000 > commits.log || true
mv -f commits.log /tmp/build_logs
- persist_to_workspace:
root: .
paths:
- CUBRID
- store_artifacts:
path: /tmp/build_logs
test_medium_ol:
<<: *oraclelinux
environment:
Expand Down Expand Up @@ -141,10 +111,9 @@ workflows:
requires:
- build

- build_ol
- test_medium_ol:
requires:
- build_ol
- build
- test_sql_ol:
requires:
- build_ol
- build

0 comments on commit 7f2ed49

Please sign in to comment.