OSDN Git Service

Switch CI from Travis CI to GitHub Actions (#12)
[pgbigm/pg_bigm.git] / .travis.yml
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644 (file)
index 6e6e817..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-language: c
-
-compiler: gcc
-
-env:
-   matrix:
-      - PGBRANCH=master
-      - PGBRANCH=REL_15_STABLE
-      - PGBRANCH=REL_14_STABLE
-      - PGBRANCH=REL_13_STABLE
-      - PGBRANCH=REL_12_STABLE
-      - PGBRANCH=REL_11_STABLE
-      - PGBRANCH=REL_10_STABLE
-      - PGBRANCH=REL9_6_STABLE
-      - PGBRANCH=REL9_5_STABLE
-      - PGBRANCH=REL9_4_STABLE
-      - PGBRANCH=REL9_3_STABLE
-      - PGBRANCH=REL9_2_STABLE
-      - PGBRANCH=REL9_1_STABLE
-
-before_install:
-   - sudo service postgresql stop
-   - CURDIR=$(pwd)
-   - PGHOME=${CURDIR}/${PGBRANCH}
-   - PGDATA=${PGHOME}/data
-   - PGSRC=${CURDIR}/postgres
-   - TRGMSRC=${PGSRC}/contrib/pg_trgm
-   - git clone https://github.com/postgres/postgres.git
-   - cd ${PGSRC}
-   - git checkout ${PGBRANCH}
-   - ./configure --prefix=${PGHOME} --enable-debug --enable-cassert
-   - make -j 2
-   - make install
-   - cd ${TRGMSRC}
-   - make install
-   - export PATH=${PATH}:${PGHOME}/bin
-   - initdb -D ${PGDATA} --locale=C --encoding=UTF8
-   - pg_ctl -D ${PGDATA} -w start
-
-before_script:
-   - cd ${CURDIR}
-   - make USE_PGXS=1 PG_CONFIG=${PGHOME}/bin/pg_config
-   - make USE_PGXS=1 PG_CONFIG=${PGHOME}/bin/pg_config install
-
-script:
-   - make USE_PGXS=1 PG_CONFIG=${PGHOME}/bin/pg_config installcheck
-   - make USE_PGXS=1 PG_CONFIG=${PGHOME}/bin/pg_config installcheck-trgm
-
-after_script:
-   - if [ -f regression.diffs ]; then cat regression.diffs; fi
-   - pg_ctl -D ${PGDATA} stop
-
-notifications:
-   email:
-      on_success: change
-      on_failure: always